Cargo.toml 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "microrm"
  3. version = "0.5.0-rc.1"
  4. edition = "2021"
  5. license = "BSD-4-Clause"
  6. authors = ["Kestrel <kestrel@flying-kestrel.ca>"]
  7. repository = "https://git.flying-kestrel.ca/kestrel/microrm"
  8. description = "Lightweight ORM using sqlite as a backend."
  9. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  10. [package.metadata.docs.rs]
  11. features = ["clap", "bundled_sqlite"]
  12. all-features = true
  13. [features]
  14. clap = ["dep:clap"]
  15. bundled_sqlite = ["libsqlite3-sys/bundled"]
  16. [dependencies]
  17. libsqlite3-sys = "0.28"
  18. serde = { version = "1.0" }
  19. serde_json = { version = "1.0" }
  20. time = "0.3"
  21. itertools = "0.12"
  22. thread_local = "1.1"
  23. sha2 = "0.10"
  24. lazy_static = "1.5"
  25. microrm-macros = { path = "../microrm-macros", version = "0.5.0-rc.1" }
  26. log = "0.4.17"
  27. clap = { version = "4", optional = true }
  28. [dev-dependencies]
  29. test-log = "0.2.15"
  30. serde = { version = "1.0", features = ["derive"] }
  31. clap = { version = "4", features = ["derive"] }
  32. stdext = { version = "0.3" }