Cargo.toml 525 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "lib-ot"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. serde = { version = "1.0", features = ["derive", "rc"] }
  8. thiserror = "1.0"
  9. serde_json = { version = "1.0" }
  10. indexmap = {version = "1.9.2", features = ["serde"]}
  11. log = "0.4"
  12. tracing = { version = "0.1", features = ["log"] }
  13. lazy_static = "1.4.0"
  14. strum = "0.21"
  15. strum_macros = "0.21"
  16. bytes = "1.4"
  17. indextree = "4.5.0"
  18. [features]
  19. flowy_unit_test = []