0d19bb4ddc
* nym-crypto: use rand_core traits from rand crate instead of cipher Make rand feature also use the rand_core traits from the rand crate to fix compilation of nym-bandwidth-controller * Add features to bip32 in nym-ledger crate * Delete unused empty crate * Add clag feature to socks5-client * Add feature flags to authenticator * Add clap feature to network-requester * Handle rebase changes
15 lines
411 B
TOML
15 lines
411 B
TOML
[package]
|
|
name = "nym-ledger"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bip32 = { workspace = true, features = ["secp256k1", "std"] }
|
|
k256 = { workspace = true }
|
|
ledger-transport = { workspace = true }
|
|
ledger-transport-hid = { workspace = true }
|
|
thiserror = { workspace = true }
|