mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 16:44:09 +02:00
prepare for updated sqlx
This commit is contained in:
parent
882b907141
commit
25721b7f98
3 changed files with 259 additions and 146 deletions
17
Cargo.toml
17
Cargo.toml
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "nextcloud-config-parser"
|
||||
description = "Rust parser for nextcloud config files"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = ["Robin Appelman <robin@icewind.nl>"]
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
|
@ -10,15 +10,18 @@ documentation = "https://docs.rs/nextcloud-config-parser"
|
|||
rust-version = "1.58"
|
||||
|
||||
[dependencies]
|
||||
redis = { version = "0.23.0", optional = true, default-features = false }
|
||||
thiserror = "1.0.40"
|
||||
redis = { version = "0.23.3", optional = true, default-features = false }
|
||||
thiserror = "1.0.50"
|
||||
php-literal-parser = "0.5.1"
|
||||
sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
miette = "5.8.0"
|
||||
sqlx = { version = "0.7.3", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"], optional = true }
|
||||
miette = "5.10.0"
|
||||
futures-core = "0.3.29"
|
||||
urlencoding = "2.1.3"
|
||||
form_urlencoded = "1.2.1"
|
||||
|
||||
[dev-dependencies]
|
||||
sqlx = { version = "0.6.3", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
miette = { version = "5.8.0", features = ["fancy"] }
|
||||
sqlx = { version = "0.7.1", default-features = false, features = ["runtime-tokio-rustls", "any", "mysql", "sqlite", "postgres"] }
|
||||
miette = { version = "5.10.0", features = ["fancy"] }
|
||||
|
||||
[features]
|
||||
db-sqlx = ["sqlx"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue