Skip to content

Commit bf11251

Browse files
committed
fixup! ci: test
1 parent c97f478 commit bf11251

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
cargo-features = ["codegen-backend"]
22

33
[workspace]
4-
members = [
5-
"v_exchanges",
6-
"v_exchanges_*",
7-
]
4+
members = ["v_exchanges", "v_exchanges_*"]
85
resolver = "3"
96

107
[workspace.lints.clippy]

v_exchanges/Cargo.toml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ license = "MIT"
1515
readme = "README.md"
1616
repository = "https://github.com/valeratrades/v_exchanges/tree/master/v_exchanges"
1717

18-
1918
[package.metadata.docs.rs]
2019
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
2120
all-features = true
@@ -25,28 +24,27 @@ rustdoc-args = ["--cfg", "docsrs"]
2524
ignored = ["derive-new", "color-eyre", "serde", "tokio", "v_utils"]
2625

2726
[dependencies]
28-
v_exchanges_adapters = { version = "^0.1.1", path = "../v_exchanges_adapters/", features = ["full"] }
29-
tokio.workspace = true
30-
tracing.workspace = true
27+
color-eyre.workspace = true
3128
serde.workspace = true
3229
serde_json.workspace = true
3330
serde_plain.workspace = true
3431
serde_with.workspace = true
32+
tokio.workspace = true
33+
tracing.workspace = true
34+
v_exchanges_adapters = { version = "^0.1.1", path = "../v_exchanges_adapters/", features = ["full"] }
3535
v_utils = { workspace = true }
36-
color-eyre.workspace = true
36+
chrono = "0.4.39"
37+
derive-new.workspace = true
38+
env_logger = "0.11.5"
3739

3840
# #dbg
3941
rust_decimal = { version = "1.36.0", features = ["serde-with-str", "serde-with-float"] }
40-
env_logger = "0.11.5"
41-
derive-new.workspace = true
42-
chrono = "0.4.39"
42+
derive_more = { version = "1.0.0", features = ["deref", "deref_mut"] }
4343

4444
insta.workspace = true #dbg (for some reason is not loading in dev-dependencies rn
45-
derive_more = { version = "1.0.0", features = ["deref", "deref_mut"] }
4645

4746
[dev-dependencies]
4847
insta.workspace = true
49-
5048
#
5149

5250
[features]

v_exchanges_adapters/Cargo.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ license = "MIT"
1515
readme = "README.md"
1616
repository = "https://github.com/valeratrades/v_exchanges/tree/master/v_exchanges_adapters"
1717

18-
1918
[package.metadata.docs.rs]
2019
all-features = true
2120
rustdoc-args = ["--cfg", "docsrs"]
@@ -35,19 +34,19 @@ rustls-tls-native-roots = ["v_exchanges_api_generics/rustls-tls-native-roots"]
3534
rustls-tls-webpki-roots = ["v_exchanges_api_generics/rustls-tls-webpki-roots"]
3635

3736
[dependencies]
38-
v_exchanges_api_generics = { version = "^0.3.1", path = "../v_exchanges_api_generics" }
37+
hex.workspace = true
38+
hmac.workspace = true
3939
serde.workspace = true
4040
serde_json.workspace = true
4141
serde_with.workspace = true
42-
hmac.workspace = true
4342
sha2.workspace = true
44-
hex.workspace = true
4543
tracing.workspace = true
44+
v_exchanges_api_generics = { version = "^0.3.1", path = "../v_exchanges_api_generics" }
45+
rand = { version = "0.8.5", optional = true }
4646

4747
serde_urlencoded = { version = "0.7.1", optional = true }
48-
rand = { version = "0.8.5", optional = true }
4948

5049
[dev-dependencies]
51-
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }
52-
rust_decimal = { version = "1.36.0", features = ["serde-with-str", "serde-with-float"] }
5350
env_logger = "0.11.5"
51+
rust_decimal = { version = "1.36.0", features = ["serde-with-str", "serde-with-float"] }
52+
tokio = { version = "1.42.0", features = ["rt-multi-thread", "macros"] }

v_exchanges_api_generics/Cargo.toml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,20 @@ tokio-tungstenite = "0.26.0"
2222

2323
futures-util.workspace = true
2424
reqwest.workspace = true
25-
v_utils.workspace = true
2625
serde.workspace = true
2726
thiserror.workspace = true
2827
tokio.workspace = true
2928
tracing.workspace = true
29+
v_utils.workspace = true
3030

3131
[features]
3232
native-tls = ["reqwest/native-tls", "tokio-tungstenite/native-tls"]
3333
native-tls-vendored = ["reqwest/native-tls-vendored", "tokio-tungstenite/native-tls-vendored"]
34-
rustls-tls-native-roots = ["reqwest/rustls-tls-native-roots", "tokio-tungstenite/rustls-tls-native-roots"]
35-
rustls-tls-webpki-roots = ["reqwest/rustls-tls-webpki-roots", "tokio-tungstenite/rustls-tls-webpki-roots"]
34+
rustls-tls-native-roots = [
35+
"reqwest/rustls-tls-native-roots",
36+
"tokio-tungstenite/rustls-tls-native-roots"
37+
]
38+
rustls-tls-webpki-roots = [
39+
"reqwest/rustls-tls-webpki-roots",
40+
"tokio-tungstenite/rustls-tls-webpki-roots"
41+
]

0 commit comments

Comments
 (0)