Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [package]
  2. name = "darkfi"
  3. version = "0.2.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.halo2]
  13. version = "=0.1.0-beta.1"
  14. features = ["dev-graph", "gadget-traces", "sanity-checks"]
  15. [dependencies.halo2_gadgets]
  16. git = "https://github.com/parazyd/halo2_gadgets.git"
  17. rev = "8238cb3471b798c76dd53b278524fc80685c7d4f"
  18. features = ["dev-graph", "test-dependencies"]
  19. [dependencies.rocksdb]
  20. git = "https://github.com/parazyd/rust-rocksdb"
  21. rev = "bd966750ec861d687913d59a9939a1408ac53131"
  22. default-features = false
  23. features = ["lz4"]
  24. [dependencies]
  25. pasta_curves = "0.2.1"
  26. rand = "0.8.4"
  27. num-bigint = "0.4.2"
  28. blake2b_simd = "0.5.11"
  29. blake2s_simd = "0.5.11"
  30. group = "0.11.0"
  31. crypto_api_chachapoly = "0.5.0"
  32. hex = "0.4.3"
  33. bs58 = "0.4.0"
  34. toml = "0.5.8"
  35. url = "2.2.2"
  36. serde_json = "1.0.68"
  37. serde = {version = "1.0.130", features = ["derive"]}
  38. async-std = "1.10.0"
  39. async-trait = "0.1.51"
  40. async-channel = "1.6.1"
  41. native-tls = "0.2.8"
  42. async-native-tls = "0.3.3"
  43. async-executor = "1.4.1"
  44. futures = "0.3.17"
  45. smol = "1.2.5"
  46. log = "0.4.14"
  47. lazy_static = "1.4.0"
  48. tungstenite = "0.15.0"
  49. async-tungstenite = "0.15.0"
  50. rusqlite = {version = "0.26.1", features = ["bundled-sqlcipher"]}
  51. zeromq = {version = "0.3.0", default-features = false, features = ["async-std-runtime", "all-transport"]}