Cargo.toml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. readme = "README.md"
  9. license = "AGPL-3.0-only"
  10. edition = "2018"
  11. #[profile.release]
  12. #debug = 1
  13. [lib]
  14. name = "drk"
  15. [dependencies]
  16. ff = "0.8"
  17. group = "0.8"
  18. bellman = { version = "0.8", default-features = false, features = ["groth16"] }
  19. bls12_381 = "0.3.1"
  20. jubjub = "0.5.1"
  21. zcash_primitives = "0.5.0"
  22. zcash_proofs = "0.5.0"
  23. rand = "0.7.3"
  24. rand_core = "0.5.1"
  25. sha2 = "0.9.8"
  26. blake2s_simd = "0.5"
  27. blake2b_simd = "0.5.11"
  28. crypto_api_chachapoly = "0.4"
  29. bitvec = "0.18"
  30. bimap = "0.5.2"
  31. hex = "0.4.2"
  32. bs58 = "0.4.0"
  33. prettytable-rs = "0.8"
  34. num_cpus = "1.13.0"
  35. num-bigint = {version = "0.3.2", features = ["rand", "serde"]}
  36. smol = "1.2.5"
  37. futures = "0.3.17"
  38. async-channel = "1.6.1"
  39. async-trait = "0.1.51"
  40. async-executor = "1.4.1"
  41. async-std = "1.10.0"
  42. async-native-tls = "0.3.3"
  43. native-tls = "0.2.8"
  44. easy-parallel = "3.1.0"
  45. tungstenite = "0.15.0"
  46. async-tungstenite = "0.15.0"
  47. simple_logger = "1.13.0"
  48. log = "0.4.14"
  49. clap = "2.33.3"
  50. toml = "0.5.8"
  51. dirs = "4.0.0"
  52. url = "2.2.2"
  53. serde = {version = "1.0.130", features = ["derive"]}
  54. serde_json = "1.0.68"
  55. bytes = "1.0.1"
  56. signal-hook = "0.3.8"
  57. lazy_static = "1.4.0"
  58. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  59. zeromq = {version = "0.2.1", default-features = false, features = ["async-std-runtime", "all-transport"]}
  60. rusqlite = {version = "0.26.0", features = ["bundled-sqlcipher"]}
  61. ## Cashier Solana Dependencies
  62. solana-sdk = {version = "1.8.0", optional = true}
  63. solana-client = {version = "1.8.0", optional = true}
  64. spl-token = {version = "3.2.0", features = ["no-entrypoint"], optional = true}
  65. spl-associated-token-account = {version = "1.0.3", features = ["no-entrypoint"], optional = true}
  66. ## Cashier Bitcoin Dependencies
  67. bitcoin = {version = "0.27.0", optional = true}
  68. bitcoin_hashes = "0.10.0"
  69. secp256k1 = {version = "0.20.3", default-features = false, features = ["rand-std"], optional = true}
  70. electrum-client = {version = "0.8.0", optional = true}
  71. ## Cashier Ethereum Dependencies
  72. hash-db = {version = "0.15.2", optional = true}
  73. keccak-hasher = {version = "0.15.3", optional = true}
  74. [features]
  75. btc = ["bitcoin", "secp256k1", "electrum-client"]
  76. sol = ["solana-sdk", "solana-client", "spl-token", "spl-associated-token-account"]
  77. eth = ["keccak-hasher", "hash-db"]