diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index dd09cd82bb..a76b65cf8d 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -22,7 +22,7 @@ url = { workspace = true } zeroize = { workspace = true } # internal -nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] } +nym-bin-common = { path = "../../common/bin-common", features = ["output_format", "clap"] } nym-client-core = { path = "../../common/client-core", features = ["fs-credentials-storage", "fs-surb-storage", "fs-gateways-storage", "cli"] } nym-config = { path = "../../common/config" } nym-credential-storage = { path = "../../common/credential-storage" } diff --git a/common/ledger/Cargo.toml b/common/ledger/Cargo.toml index 993c37980f..72de9bb003 100644 --- a/common/ledger/Cargo.toml +++ b/common/ledger/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bip32 = { workspace = true } +bip32 = { workspace = true, features = ["secp256k1", "std"] } k256 = { workspace = true } ledger-transport = { workspace = true } ledger-transport-hid = { workspace = true } diff --git a/common/mobile-storage/Cargo.toml b/common/mobile-storage/Cargo.toml deleted file mode 100644 index 4b02821498..0000000000 --- a/common/mobile-storage/Cargo.toml +++ /dev/null @@ -1,11 +0,0 @@ -[package] -name = "nym-mobile-storage" -version = "0.1.0" -edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - -[dependencies] -async-trait = { workspace = true } -thiserror = { workspace = true } - diff --git a/service-providers/authenticator/Cargo.toml b/service-providers/authenticator/Cargo.toml index 31509db477..2b8ca52e8e 100644 --- a/service-providers/authenticator/Cargo.toml +++ b/service-providers/authenticator/Cargo.toml @@ -13,7 +13,7 @@ anyhow = { workspace = true } bincode = { workspace = true } bs58 = { workspace = true } bytes = { workspace = true } -clap = { workspace = true } +clap = { workspace = true, features = ["cargo", "derive"] } fastrand = { workspace = true } futures = { workspace = true } ipnetwork = { workspace = true } @@ -28,8 +28,8 @@ tokio-util = { workspace = true, features = ["codec"] } url = { workspace = true } nym-authenticator-requests = { path = "../../common/authenticator-requests" } -nym-bin-common = { path = "../../common/bin-common" } -nym-client-core = { path = "../../common/client-core" } +nym-bin-common = { path = "../../common/bin-common", features = ["clap", "output_format"] } +nym-client-core = { path = "../../common/client-core", features = ["cli"] } nym-config = { path = "../../common/config" } nym-crypto = { path = "../../common/crypto" } nym-id = { path = "../../common/nym-id" } diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 73700d59b3..572be7615a 100644 --- a/service-providers/network-requester/Cargo.toml +++ b/service-providers/network-requester/Cargo.toml @@ -44,7 +44,7 @@ zeroize = { workspace = true } # internal nym-async-file-watcher = { path = "../../common/async-file-watcher" } -nym-bin-common = { path = "../../common/bin-common", features = ["output_format"] } +nym-bin-common = { path = "../../common/bin-common", features = ["output_format", "clap"] } nym-client-core = { path = "../../common/client-core", features = ["cli", "fs-gateways-storage", "fs-surb-storage"] } nym-client-websocket-requests = { path = "../../clients/native/websocket-requests" } nym-config = { path = "../../common/config" }