Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "microrm"
  3. version = "0.5.0-dev"
  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. rust-version = "1.75"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [package.metadata.docs.rs]
  12. features = ["clap", "bundled_sqlite"]
  13. all-features = true
  14. [features]
  15. clap = ["dep:clap"]
  16. bundled_sqlite = ["libsqlite3-sys/bundled"]
  17. time = ["dep:time"]
  18. [dependencies]
  19. # Core data-processing dependencies
  20. libsqlite3-sys = "0.28"
  21. serde = { version = "1.0" }
  22. serde_json = { version = "1.0" }
  23. sha2 = "0.10"
  24. # Implementation helpers
  25. lazy_static = "1.5"
  26. # UX
  27. microrm-macros = { path = "../microrm-macros", version = "0.5.0-dev" }
  28. log = { version = "0.4" }
  29. clap = { version = "4", optional = true }
  30. # Interop support
  31. time = { version = "0.3", optional = true }
  32. [dev-dependencies]
  33. test-log = "0.2.15"
  34. serde = { version = "1.0", features = ["derive"] }
  35. clap = { version = "4", features = ["derive"] }
  36. stdext = { version = "0.3" }