Cargo.toml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. [package]
  2. name = "darkfi"
  3. version = "0.1.0"
  4. homepage = "https://dark.fi"
  5. description = "Anonymous. Uncensored. Sovereign."
  6. authors = ["darkfi <dev@dark.fi>"]
  7. repository = "https://github.com/darkrenaissance/darkfi"
  8. license = "AGPL-3.0-only"
  9. edition = "2021"
  10. [lib]
  11. name = "drk"
  12. [dependencies]
  13. ff = "0.8"
  14. group = "0.8"
  15. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  16. bls12_381 = "0.3.1"
  17. jubjub = "0.5.1"
  18. zcash_primitives = "0.5.0"
  19. zcash_proofs = "0.5.0"
  20. rand = "0.7.3"
  21. rand_core = "0.5.1"
  22. sha2 = "0.9.8"
  23. ripemd160 = "0.9.1"
  24. blake2s_simd = "0.5"
  25. blake2b_simd = "0.5.11"
  26. crypto_api_chachapoly = "0.4"
  27. bitvec = "0.18"
  28. bimap = "0.5.2"
  29. hex = "0.4.2"
  30. bs58 = "0.4.0"
  31. prettytable-rs = "0.8"
  32. num_cpus = "1.13.0"
  33. num-bigint = {version = "0.3.2", features = ["rand", "serde"]}
  34. smol = "1.2.5"
  35. futures = "0.3.17"
  36. async-channel = "1.6.1"
  37. async-trait = "0.1.51"
  38. async-executor = "1.4.1"
  39. async-std = "1.10.0"
  40. async-native-tls = "0.3.3"
  41. native-tls = "0.2.8"
  42. easy-parallel = "3.1.0"
  43. tungstenite = "0.15.0"
  44. async-tungstenite = "0.15.0"
  45. simple_logger = "1.13.0"
  46. log = "0.4.14"
  47. clap = "2.33.3"
  48. toml = "0.5.8"
  49. dirs = "4.0.0"
  50. url = "2.2.2"
  51. serde = {version = "1.0.130", features = ["derive"]}
  52. serde_json = "1.0.68"
  53. bytes = "1.0.1"
  54. signal-hook = "0.3.10"
  55. signal-hook-async-std = "0.2.1"
  56. lazy_static = "1.4.0"
  57. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  58. zeromq = {version = "0.2.2", default-features = false, features = ["async-std-runtime", "all-transport"]}
  59. rusqlite = {version = "0.26.0", features = ["bundled-sqlcipher"]}
  60. ## Cashier Solana Dependencies
  61. solana-sdk = {version = "1.8.1", optional = true}
  62. solana-client = {version = "1.8.1", optional = true}
  63. spl-token = {version = "3.2.0", features = ["no-entrypoint"], optional = true}
  64. spl-associated-token-account = {version = "1.0.3", features = ["no-entrypoint"], optional = true}
  65. ## Cashier Bitcoin Dependencies
  66. anyhow = "1.0.44"
  67. bdk = {version = "0.12.0", optional = true}
  68. bitcoin = {version = "0.27.0", optional = true }
  69. secp256k1 = {version = "0.20.3", default-features = false, features = ["rand-std"], optional = true}
  70. ## Cashier Ethereum Dependencies
  71. hash-db = {version = "0.15.2", optional = true}
  72. keccak-hasher = {version = "0.15.3", optional = true}
  73. [features]
  74. btc = ["bdk", "bitcoin", "secp256k1"]
  75. sol = ["solana-sdk", "solana-client", "spl-token", "spl-associated-token-account"]
  76. eth = ["keccak-hasher", "hash-db"]