diff options
Diffstat (limited to '')
-rw-r--r-- | jid/Cargo.toml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 57421ef..e3cf7c7 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -4,11 +4,15 @@ version = "0.1.0" edition = "2021" [features] -sqlx = ["dep:sqlx"] +# default = [] +# sqlx = ["dep:sqlx"] -[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +[dependencies] # sqlx = { version = "0.8.3", features = ["sqlite"], optional = true } -sqlx = { path = "../../remote/sqlx", 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 } +# [target.'cfg(not(target_arch = "wasm32"))'.dependencies] +# sqlx = { version = "0.8.3", features = ["sqlite"], optional = true } + +# [target.'cfg(target_arch = "wasm32")'.dependencies] +# sqlx = { path = "../../remote/sqlx", features = ["sqlite-precompiled-wasm"], optional = true } |