Prechádzať zdrojové kódy

Add bundled_sqlite feature and bump version number.

Kestrel 2 mesiacov pred
rodič
commit
b9d8091ddf
1 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 3 2
      microrm/Cargo.toml

+ 3 - 2
microrm/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "microrm"
-version = "0.4.0"
+version = "0.4.1"
 edition = "2021"
 license = "BSD-4-Clause"
 authors = ["Kestrel <kestrel@flying-kestrel.ca>"]
@@ -10,11 +10,12 @@ 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"]
+features = ["clap", "bundled_sqlite"]
 all-features = true
 
 [features]
 clap = ["dep:clap"]
+bundled_sqlite = ["libsqlite3-sys/bundled"]
 
 [dependencies]
 libsqlite3-sys = "0.28"