123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- [package]
- name = "microrm"
- version = "0.4.0"
- 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"]
- all-features = true
- [features]
- clap = ["dep:clap"]
- [dependencies]
- base64 = "0.13"
- sha2 = "0.10"
- libsqlite3-sys = "0.28"
- serde = { version = "1.0", features = ["derive"] }
- serde_json = { version = "1.0" }
- lazy_static = { version = "1.4.0" }
- time = "0.3"
- microrm-macros = { path = "../microrm-macros", version = "0.4.0" }
- log = "0.4.17"
- topological-sort = { version = "0.2" }
- clap = { version = "4", optional = true }
- [dev-dependencies]
- test-log = "0.2.15"
- clap = { version = "4", features = ["derive"] }
- # criterion = "0.5"
- # rand = "0.8.5"
- # stats_alloc = "0.1.10"
- # [[bench]]
- # name = "simple_in_memory"
- # harness = false
|