Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. smol = "1.2.5"
  36. futures = "0.3.17"
  37. async-channel = "1.6.1"
  38. async-trait = "0.1.51"
  39. async-executor = "1.4.1"
  40. async-std = "1.10.0"
  41. async-native-tls = "0.3.3"
  42. native-tls = "0.2.8"
  43. easy-parallel = "3.1.0"
  44. tungstenite = "0.15.0"
  45. async-tungstenite = "0.15.0"
  46. simple_logger = "1.13.0"
  47. log = "0.4.14"
  48. clap = "2.33.3"
  49. toml = "0.5.8"
  50. dirs = "4.0.0"
  51. url = "2.2.2"
  52. serde = "1.0.130"
  53. serde_json = "1.0.68"
  54. bytes = "1.0.1"
  55. signal-hook = "0.3.8"
  56. lazy_static = "1.4.0"
  57. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  58. zeromq = {version = "0.2.1", 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.0", optional = true}
  62. solana-client = {version = "1.8.0", 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. bitcoin = {version = "0.27.0", optional = true }
  67. bitcoin_hashes = "0.10.0"
  68. secp256k1 = {version = "0.20.3", default-features = false, features = ["rand-std"], optional = true}
  69. electrum-client = {version = "0.8.0", optional = true }
  70. [features]
  71. btc = ["bitcoin", "secp256k1", "electrum-client"]
  72. sol = ["solana-sdk", "solana-client", "spl-token", "spl-associated-token-account"]