123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [package]
- name = "microrm"
- version = "0.5.0-dev"
- edition = "2021"
- license = "BSD-4-Clause"
- authors = ["Kestrel <kestrel@flying-kestrel.ca>"]
- repository = "https://git.flying-kestrel.ca/kestrel/microrm"
- description = "Lightweight ORM using sqlite as a backend."
- rust-version = "1.75"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [package.metadata.docs.rs]
- features = ["clap", "bundled_sqlite"]
- all-features = true
- [features]
- clap = ["dep:clap"]
- bundled_sqlite = ["libsqlite3-sys/bundled"]
- time = ["dep:time"]
- [dependencies]
- # Core data-processing dependencies
- libsqlite3-sys = "0.28"
- serde = { version = "1.0" }
- serde_json = { version = "1.0" }
- sha2 = "0.10"
- # Implementation helpers
- lazy_static = "1.5"
- # UX
- microrm-macros = { path = "../microrm-macros", version = "0.5.0-dev" }
- log = { version = "0.4" }
- clap = { version = "4", optional = true }
- # Interop support
- time = { version = "0.3", optional = true }
- [dev-dependencies]
- test-log = "0.2.15"
- serde = { version = "1.0", features = ["derive"] }
- clap = { version = "4", features = ["derive"] }
- stdext = { version = "0.3" }
|