Cargo.toml 2.0 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. smol = "1.2.4"
  34. futures = "0.3.5"
  35. async-channel = "1.4.2"
  36. async-trait = "0.1.42"
  37. async-executor = "1.4.0"
  38. async-std = "1.6.2"
  39. async-native-tls = "0.3.3"
  40. native-tls = "0.2.8"
  41. easy-parallel = "3.1.0"
  42. simple_logger = "1.13.0"
  43. log = "0.4.14"
  44. clap = "2.33.3"
  45. toml = "0.5.8"
  46. dirs = "4.0.0"
  47. serde = { version = "1.0.126", features = ["derive"]}
  48. serde_json = "1.0.61"
  49. bytes = "1.0.1"
  50. signal-hook = "0.3.8"
  51. lazy_static = "1.4.0"
  52. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  53. ## Cashier Solana Dependencies
  54. spl-token = {version = "3.2.0", optional = true}
  55. solana-sdk = {version = "1.7.11", optional = true}
  56. solana-client = {version = "1.7.11", optional = true}
  57. tokio-tungstenite = {version = "0.15.0", optional = true}
  58. ## Cashier Bitcoin Dependencies
  59. bitcoin = {version = "0.27.0", optional = true }
  60. secp256k1 = {version = "0.20.3", optional = true}
  61. electrum-client = {version = "0.8.0", optional = true }
  62. [dependencies.rusqlite]
  63. version = "0.25.1"
  64. features = ["bundled", "sqlcipher"]
  65. [dependencies.zeromq]
  66. git = "https://github.com/zeromq/zmq.rs"
  67. default-features = false
  68. features = ["async-std-runtime", "all-transport"]
  69. [features]
  70. btc = ["bitcoin", "secp256k1", "electrum-client"]
  71. sol = ["solana-sdk", "solana-client", "spl-token", "tokio-tungstenite"]