blob: 57421efb0e2554ca47e15cee5e7b34612c14a595 (
plain) (
tree)
|
|
[package]
name = "jid"
version = "0.1.0"
edition = "2021"
[features]
sqlx = ["dep:sqlx"]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# sqlx = { version = "0.8.3", features = ["sqlite"], optional = true }
sqlx = { path = "../../remote/sqlx", features = ["sqlite"], optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
sqlx = { path = "../../remote/sqlx", features = ["sqlite-precompiled-wasm"], optional = true }
|