Skip to content

Commit

Permalink
fix features
Browse files Browse the repository at this point in the history
  • Loading branch information
ityuany committed Jan 31, 2025
1 parent a9b2e30 commit 20a44e7
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ tracing-subscriber = "0.3.19"
which = "7.0.1"

test-context = "0.3.0"
uuid = "1.12.1"
uuid = "1.12.1"
16 changes: 8 additions & 8 deletions crates/snm_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ version = "0.0.1-119"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = { workspace = true }
config = "0.14.0"
dirs = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
snm_npmrc = { path = "../snm_npmrc" }
snm_utils = { path = "../snm_utils" }
tokio = { workspace = true , features = ["macros"]}
anyhow = { workspace = true }
config = "0.14.0"
dirs = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
snm_npmrc = { path = "../snm_npmrc" }
snm_utils = { path = "../snm_utils" }
test-context = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
2 changes: 1 addition & 1 deletion crates/snm_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ snm_config = { path = "../snm_config" }
snm_download_builder = { path = "../snm_download_builder" }
snm_utils = { path = "../snm_utils" }
tracing = { workspace = true }
uuid = { workspace = true , features = ["v4"]}
uuid = { workspace = true, features = ["v4"] }
2 changes: 1 addition & 1 deletion crates/snm_pm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ sha1 = "0.10"
snm_config = { path = "../snm_config" }
snm_download_builder = { path = "../snm_download_builder" }
snm_utils = { path = "../snm_utils" }
tracing = { workspace = true }
tokio = { workspace = true, features = ["macros"] }
tracing = { workspace = true }
40 changes: 20 additions & 20 deletions crates/snm_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ version = "0.0.1-119"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.75"
backtrace = "0.3.71"
colored = "2.1.0"
config = "0.14.0"
dialoguer = "0.11.0"
dunce = { workspace = true }
flate2 = "1.0.28"
reqwest = { workspace = true, features = ["stream", "native-tls-vendored"] }
semver = { workspace = true }
serde_json = "1.0.114"
tar = "0.4.40"
termcolor = "1.4.1"
thiserror = "1.0.58"
wait-timeout = { workspace = true }
which = { workspace = true }
xz2 = { version = "0.1.7", features = ["static"] }
zip = "2.1.3"
dirs = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
anyhow = "1.0.75"
backtrace = "0.3.71"
colored = "2.1.0"
config = "0.14.0"
dialoguer = "0.11.0"
dirs = { workspace = true }
dunce = { workspace = true }
flate2 = "1.0.28"
reqwest = { workspace = true, features = ["stream", "native-tls-vendored"] }
semver = { workspace = true }
serde_json = "1.0.114"
tar = "0.4.40"
termcolor = "1.4.1"
thiserror = "1.0.58"
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
wait-timeout = { workspace = true }
which = { workspace = true }
xz2 = { version = "0.1.7", features = ["static"] }
zip = "2.1.3"

0 comments on commit 20a44e7

Please sign in to comment.