Skip to content

Commit

Permalink
fix: add sys lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Amninder Kaur committed Sep 5, 2023
1 parent 7b9c7b9 commit 9aeead7
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 54 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
with:
toolchain: stable
- run: rustup component add rustfmt clippy
- name: cargo clean
run: cargo clean
- name: cargo build
run: cargo build
- name: pre-commit checks
Expand Down
104 changes: 55 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 12 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ members = [
# [dependencies]
#logging
env_logger = "0.10.0"
dotenvy = "0.15"
log = { version = "0.4", features = [ "kv_unstable", "std", "kv_unstable_serde" ] }

#Exception handling
Expand All @@ -30,21 +31,27 @@ tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"

tokio-postgres = {version="0.7.7", features=["with-chrono-0_4","with-serde_json-1","with-uuid-1"] }
#kafka
rdkafka = { version = "0.29.0", features = ["sasl"] }
clap = { version = "4.1.4", features = ["derive"] }
rdkafka-sys = { version = "4.3.0" }

#db
tokio-postgres = {version="0.7.7", features=["with-chrono-0_4","with-serde_json-1","with-uuid-1"] }
deadpool-postgres = "0.10"
refinery = { version = "0.8.7", features = ["tokio-postgres"] }

#time
chrono = "0.4.23"

uuid = { version="1.3.0", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
] }
dotenvy = "0.15"
clippy = "0.0.302"
deadpool-postgres = "0.10"
refinery = { version = "0.8.7", features = ["tokio-postgres"] }
thiserror = "1.0.31"
rand = "0.8.5"
serial_test = "2.0.0"
clap = { version="4.1.4", features = ["derive"] }


0 comments on commit 9aeead7

Please sign in to comment.