12345678910111213141516171819202122232425262728293031323334353637383940 |
- [package]
- name = "microrm"
- version = "0.5.0-rc.1"
- 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."
- # 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"]
- [dependencies]
- libsqlite3-sys = "0.28"
- serde = { version = "1.0" }
- serde_json = { version = "1.0" }
- time = "0.3"
- itertools = "0.12"
- thread_local = "1.1"
- sha2 = "0.10"
- lazy_static = "1.5"
- microrm-macros = { path = "../microrm-macros", version = "0.5.0-rc.1" }
- log = "0.4.17"
- clap = { version = "4", optional = true }
- [dev-dependencies]
- test-log = "0.2.15"
- serde = { version = "1.0", features = ["derive"] }
- clap = { version = "4", features = ["derive"] }
- stdext = { version = "0.3" }
|