mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
optional sqlx
This commit is contained in:
parent
cbd172d6c8
commit
06de88ec21
4 changed files with 294 additions and 96 deletions
14
Cargo.toml
14
Cargo.toml
|
|
@ -9,11 +9,13 @@ repository = "https://github.com/icewind1991/nextcloud-config-parser"
|
|||
documentation = "https://docs.rs/nextcloud-config-parser"
|
||||
|
||||
[dependencies]
|
||||
redis = { version = "0.20", features = ["tokio-comp", "aio", "cluster"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
redis = { version = "0.20" }
|
||||
thiserror = "1"
|
||||
warp = "0.3"
|
||||
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "any", "macros", "mysql", "sqlite", "postgres"] }
|
||||
php-literal-parser = { version = "0.2", default-features = false }
|
||||
parse-display = "0.4"
|
||||
sqlx = { version = "0.5", features = ["any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
|
||||
[features]
|
||||
db-sqlx = ["sqlx"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue