Skip to content

Commit

Permalink
chore: remove ahash as dependancy (#6238)
Browse files Browse the repository at this point in the history
Description
---
remove ahash as dependancy


ahash is not used directly but is a sub dependency,
  • Loading branch information
SWvheerden authored Mar 27, 2024
1 parent f842c76 commit c451d20
Show file tree
Hide file tree
Showing 10 changed files with 89 additions and 38 deletions.
109 changes: 80 additions & 29 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion applications/minotari_console_wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ tokio = { version = "1.36", features = ["signal"] }
blake2 = "0.10"
chrono = { version = "0.4.19", default-features = false }
clap = { version = "3.2", features = ["derive", "env"] }
config = "0.13.0"
config = "0.14.0"
crossterm = { version = "0.25.0" }
digest = "0.10"
futures = { version = "^0.3.16", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_merge_mining_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ borsh = "1.2"
bytes = "1.1"
chrono = { version = "0.4.19", default-features = false }
clap = { version = "3.2", features = ["derive", "env"] }
config = { version = "0.13.0" }
config = { version = "0.14.0" }
crossterm = { version = "0.25.0" }
futures = { version = "^0.3.16", features = ["async-await"] }
hex = "0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tonic = { version = "0.8.3", features = ["tls", "tls-roots" ] }
[dev-dependencies]
prost-types = "0.11.9"
chrono = { version = "0.4.19", default-features = false }
config = "0.13.0"
config = "0.14.0"

[package.metadata.cargo-machete]
ignored = [
Expand Down
2 changes: 1 addition & 1 deletion applications/minotari_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ borsh = "1.2"
chrono = { version = "0.4.19", default-features = false }
clap = { version = "3.2", features = ["derive", "env"] }
console-subscriber = "0.1.8"
config = { version = "0.13.0" }
config = { version = "0.14.0" }
crossterm = { version = "0.25.0", features = ["event-stream"] }
derive_more = "0.99.17"
either = "1.6.1"
Expand Down
2 changes: 1 addition & 1 deletion base_layer/contacts/src/chat_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ tari_storage = { path = "../../../../infrastructure/storage" }

anyhow = "1.0.41"
async-trait = "0.1.52"
config = { version = "0.13.0" }
config = { version = "0.14.0" }
diesel = { version = "2.0.3", features = ["sqlite", "r2d2", "serde_json", "chrono", "64-column-tables"] }
lmdb-zero = "0.4.4"
log = "0.4.17"
Expand Down
2 changes: 1 addition & 1 deletion base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ tari_test_utils = { path = "../../infrastructure/test_utils" }
curve25519-dalek = { package = "tari-curve25519-dalek", version = "4.0.3" }
# SQLite required for the integration tests
libsqlite3-sys = { version = "0.25.1", features = ["bundled"] }
config = { version = "0.13.0" }
config = { version = "0.14.0" }
env_logger = "0.7.0"
tempfile = "3.1.0"
toml = { version = "0.5" }
Expand Down
2 changes: 1 addition & 1 deletion base_layer/p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ webpki = "0.22"
[dev-dependencies]
tari_test_utils = { path = "../../infrastructure/test_utils" }

config = "0.13.0"
config = "0.14.0"
clap = "3.2"
tempfile = "3.1.0"

Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ tari_features = { path = "./tari_features", version = "1.0.0-pre.11a"}

anyhow = "1.0.53"
blake2 = "0.10"
config = { version = "0.13.0", default_features = false, features = ["toml"] }
config = { version = "0.14.0", default_features = false, features = ["toml"] }
dirs-next = "1.0.2"
git2 = { version = "0.18", default_features = false, optional = true }
log = "0.4.8"
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tari_key_manager = { path = "../base_layer/key_manager" }
anyhow = "1.0.53"
async-trait = "0.1.50"
chrono = { version = "0.4.22", default-features = false }
config = "0.13.0"
config = "0.14.0"
csv = "1.1"
cucumber = { version = "0.20.0", features = ["default", "libtest", "output-junit"] }
futures = { version = "^0.3.1" }
Expand Down

0 comments on commit c451d20

Please sign in to comment.