Cargo.toml 352 B

12345678910111213
  1. [package]
  2. name = "dark-forest"
  3. version = "0.1.0"
  4. description = "Minimal Tree implementation using DFS post-order traversal to iterate its leafs."
  5. authors = ["Dyne.org foundation <foundation@dyne.org>"]
  6. repository = "https://github.com/darkrenaissance/darkfi"
  7. license = "AGPL-3.0-only"
  8. edition = "2021"
  9. [workspace]
  10. [dependencies]
  11. thiserror = "1.0.50"