Cargo.toml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. blake2s_simd = "0.5"
  24. blake2b_simd = "0.5.11"
  25. crypto_api_chachapoly = "0.4"
  26. bitvec = "0.18"
  27. bimap = "0.5.2"
  28. hex = "0.4.2"
  29. bs58 = "0.4.0"
  30. prettytable-rs = "0.8"
  31. num_cpus = "1.13.0"
  32. num-bigint = {version = "0.3.2", features = ["rand", "serde"]}
  33. smol = "1.2.5"
  34. futures = "0.3.17"
  35. async-channel = "1.6.1"
  36. async-trait = "0.1.51"
  37. async-executor = "1.4.1"
  38. async-std = "1.10.0"
  39. async-native-tls = "0.3.3"
  40. native-tls = "0.2.8"
  41. easy-parallel = "3.1.0"
  42. tungstenite = "0.15.0"
  43. async-tungstenite = "0.15.0"
  44. simple_logger = "1.13.0"
  45. log = "0.4.14"
  46. clap = "2.33.3"
  47. toml = "0.5.8"
  48. dirs = "4.0.0"
  49. url = "2.2.2"
  50. serde = {version = "1.0.130", features = ["derive"]}
  51. serde_json = "1.0.68"
  52. bytes = "1.0.1"
  53. signal-hook = "0.3.10"
  54. signal-hook-async-std = "0.2.1"
  55. lazy_static = "1.4.0"
  56. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  57. zeromq = {version = "0.2.2", default-features = false, features = ["async-std-runtime", "all-transport"]}
  58. rusqlite = {version = "0.26.0", features = ["bundled-sqlcipher"]}
  59. ## Cashier Solana Dependencies
  60. solana-sdk = {version = "1.8.1", optional = true}
  61. solana-client = {version = "1.8.1", optional = true}
  62. spl-token = {version = "3.2.0", features = ["no-entrypoint"], optional = true}
  63. spl-associated-token-account = {version = "1.0.3", features = ["no-entrypoint"], optional = true}
  64. ## Cashier Bitcoin Dependencies
  65. anyhow = "1.0.44"
  66. bdk = {version = "0.12.0", optional = true}
  67. bitcoin = {version = "0.27.0", optional = true }
  68. secp256k1 = {version = "0.20.3", default-features = false, features = ["rand-std"], optional = true}
  69. ## Cashier Ethereum Dependencies
  70. hash-db = {version = "0.15.2", optional = true}
  71. keccak-hasher = {version = "0.15.3", optional = true}
  72. [features]
  73. btc = ["bdk", "bitcoin", "secp256k1"]
  74. sol = ["solana-sdk", "solana-client", "spl-token", "spl-associated-token-account"]
  75. eth = ["keccak-hasher", "hash-db"]