| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- [package]
- name = "cashierd"
- version = "0.3.0"
- edition = "2021"
- [dependencies.darkfi]
- path = "../../"
- features = ["wallet", "node", "rpc"]
- [dependencies]
- # Async
- smol = "1.2.5"
- futures = "0.3.21"
- async-std = "1.11.0"
- async-trait = "0.1.53"
- async-channel = "1.6.1"
- async-executor = "1.4.1"
- easy-parallel = "3.2.0"
- # Crypto
- rand = "0.8.5"
- # Misc
- clap = {version = "3.1.12", features = ["derive"]}
- log = "0.4.16"
- num_cpus = "1.13.1"
- simplelog = "0.12.0"
- thiserror = "1.0.30"
- url = "2.2.2"
- fxhash = "0.2.1"
- # Encoding and parsing
- serde = {version = "1.0.136", features = ["derive"]}
- serde_json = "1.0.79"
- # Bitcoin bridge dependencies
- bdk = {version = "0.17.0", optional = true}
- anyhow = {version = "1.0.57", optional = true}
- bitcoin = {version = "0.27.1", optional = true}
- secp256k1 = {version = "0.20.1", default-features = false, features = ["rand-std"], optional = true}
- # Ethereum bridge dependencies
- hex = {version = "0.4.3", optional = true}
- hash-db = {version = "0.15.2", optional = true}
- lazy_static = {version = "1.4.0", optional = true}
- keccak-hasher = {version = "0.15.3", optional = true}
- num-bigint = {version = "0.4.3", features = ["rand", "serde"], optional = true}
- # Solana bridge dependencies
- native-tls = {version = "0.2.10", optional = true}
- async-native-tls = {version = "0.4.0", optional = true}
- solana-client = {version = "1.10.9", optional = true}
- solana-sdk = {version = "1.10.9", optional = true}
- spl-associated-token-account = {version = "1.0.3", features = ["no-entrypoint"], optional = true}
- spl-token = {version = "3.2.0", features = ["no-entrypoint"], optional = true}
- tungstenite = {version = "0.17.2", optional = true}
- [features]
- btc = [
- "anyhow",
- "bdk",
- "bitcoin",
- "secp256k1",
- ]
- eth = [
- "num-bigint",
- "keccak-hasher",
- "hash-db",
- "lazy_static",
- "hex",
- ]
- sol = [
- "async-native-tls",
- "native-tls",
- "solana-client",
- "solana-sdk",
- "spl-associated-token-account",
- "spl-token",
- "tungstenite",
- ]
|