Skip to content

Commit

Permalink
fix: toml dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisIsMani committed Nov 10, 2023
1 parent 8fb9a75 commit 5d8d0fa
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/cards/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ time = "0.3.21"
# First party crates
common_utils = { version = "0.1.0", path = "../common_utils" }
masking = { version = "0.1.0", path = "../masking" }

[dev-dependencies]
serde_json = "1.0.96"
3 changes: 3 additions & 0 deletions crates/common_enums/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ utoipa = { version = "3.3.0", features = ["preserve_order"] }

# First party crates
router_derive = { version = "0.1.0", path = "../router_derive" }

[dev-dependencies]
serde_json = "1.0.96"
5 changes: 5 additions & 0 deletions crates/common_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,8 @@ common_enums = { version = "0.1.0", path = "../common_enums" }

[target.'cfg(not(target_os = "windows"))'.dependencies]
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"], optional = true }

[dev-dependencies]
fake = "2.6.1"
proptest = "1.2.0"
test-case = "3.1.0"
3 changes: 3 additions & 0 deletions crates/euclid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ connector_choice_mca_id = []
dummy_connector = []
backwards_compatibility = ["connector_choice_bcompat"]

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "backends"
harness = false
Expand Down
3 changes: 3 additions & 0 deletions crates/kgraph_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ serde = "1.0.163"
serde_json = "1.0.96"
thiserror = "1.0.43"

[dev-dependencies]
criterion = "0.5"

[[bench]]
name = "evaluation"
harness = false
3 changes: 3 additions & 0 deletions crates/masking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1.0.96"
subtle = "=2.4.1"
zeroize = { version = "1.6", default-features = false }

[dev-dependencies]
serde_json = "1.0.96"
3 changes: 3 additions & 0 deletions crates/redis_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ tokio = "1.28.2"
# First party crates
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext"] }
router_env = { version = "0.1.0", path = "../router_env", features = ["log_extra_implicit_fields", "log_custom_entries_to_extra"] }

[dev-dependencies]
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
15 changes: 15 additions & 0 deletions crates/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,21 @@ signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
[build-dependencies]
router_env = { version = "0.1.0", path = "../router_env", default-features = false }

[dev-dependencies]
actix-http = "3.3.1"
awc = { version = "3.1.1", features = ["rustls"] }
derive_deref = "1.1.1"
rand = "0.8.5"
serial_test = "2.0.0"
thirtyfour = "0.31.0"
time = { version = "0.3.21", features = ["macros"] }
tokio = "1.28.2"
toml = "0.7.4"
wiremock = "0.5"

# First party dev-dependencies
test_utils = { version = "0.1.0", path = "../test_utils" }

[[bin]]
name = "router"
path = "src/bin/router.rs"
Expand Down
6 changes: 6 additions & 0 deletions crates/router_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,9 @@ indexmap = "2.0.0"
proc-macro2 = "1.0.56"
quote = "1.0.26"
syn = { version = "1.0.109", features = ["full", "extra-traits"] } # the full feature does not seem to encompass all the features

[dev-dependencies]
diesel = { version = "2.1.0", features = ["postgres"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
strum = { version = "0.24.1", features = ["derive"] }
3 changes: 3 additions & 0 deletions crates/router_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ tracing-opentelemetry = { version = "0.19.0" }
tracing-subscriber = { version = "0.3.17", default-features = true, features = ["env-filter", "json", "registry"] }
vergen = { version = "8.2.1", optional = true, features = ["cargo", "git", "git2", "rustc"] }

[dev-dependencies]
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }

[build-dependencies]
cargo_metadata = "0.15.4"
vergen = { version = "8.2.1", features = ["cargo", "git", "git2", "rustc"], optional = true }
Expand Down

0 comments on commit 5d8d0fa

Please sign in to comment.