Add rc feature to serde

This commit is contained in:
bitfl0wer 2023-08-02 20:17:36 +02:00
parent 2739a7479b
commit 917f1cfb0d
1 changed files with 17 additions and 9 deletions

View File

@ -11,7 +11,7 @@ client = []
[dependencies]
tokio = { version = "1.29.1", features = ["macros"] }
serde = {version = "1.0.171", features = ["derive"]}
serde = { version = "1.0.171", features = ["derive", "rc"] }
serde_json = { version = "1.0.103", features = ["raw_value"] }
serde-aux = "4.2.0"
serde_with = "3.0.0"
@ -31,7 +31,15 @@ hostname = "0.3.1"
bitflags = { version = "2.3.3", features = ["serde"] }
lazy_static = "1.4.0"
poem = { version = "1.3.56", optional = true }
sqlx = { git = "https://github.com/zert3x/sqlx", branch="feature/skip", features = ["mysql", "sqlite", "json", "chrono", "ipnetwork", "runtime-tokio-native-tls", "any"], optional = true }
sqlx = { git = "https://github.com/zert3x/sqlx", branch = "feature/skip", features = [
"mysql",
"sqlite",
"json",
"chrono",
"ipnetwork",
"runtime-tokio-native-tls",
"any",
], optional = true }
thiserror = "1.0.43"
jsonwebtoken = "8.3.0"
log = "0.4.19"