Cargo.toml 2.1 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. 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.17"
  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. 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.126", features = ["derive"]}
  51. serde_json = "1.0.61"
  52. bytes = "1.0.1"
  53. signal-hook = "0.3.8"
  54. lazy_static = "1.4.0"
  55. rocksdb = {version = "0.16.0", default-features = false, features = ["lz4"]}
  56. ## Cashier Solana Dependencies
  57. spl-token = {version = "3.2.0", optional = true}
  58. solana-sdk = {version = "1.7.11", optional = true}
  59. solana-client = {version = "1.7.11", optional = true}
  60. spl-associated-token-account = {version = "1.0.3", optional = true}
  61. ## Cashier Bitcoin Dependencies
  62. bitcoin = {version = "0.27.0", optional = true }
  63. secp256k1 = {version = "0.20.3", default-features = false, features = ["rand-std"], optional = true}
  64. electrum-client = {version = "0.8.0", optional = true }
  65. [dependencies.rusqlite]
  66. version = "0.25.1"
  67. features = ["bundled", "sqlcipher"]
  68. [dependencies.zeromq]
  69. git = "https://github.com/zeromq/zmq.rs"
  70. default-features = false
  71. features = ["async-std-runtime", "all-transport"]
  72. [features]
  73. btc = ["bitcoin", "secp256k1", "electrum-client"]
  74. sol = ["solana-sdk", "solana-client", "spl-token", "spl-associated-token-account"]