fix: limit serde_with features
This commit is contained in:
parent
c688ff74e9
commit
6ad77d8daa
3 changed files with 8 additions and 3 deletions
|
|
@ -43,7 +43,10 @@ reqwest = { version = "0.11.11", default-features = false, features = [
|
|||
tokio = { version = "1.20.0", features = ["macros", "time"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
serde_with = { version = "3.0.0", features = ["json"] }
|
||||
serde_with = { version = "3.0.0", default-features = false, features = [
|
||||
"macros",
|
||||
"json",
|
||||
] }
|
||||
rand = "0.8.5"
|
||||
time = { version = "0.3.15", features = [
|
||||
"macros",
|
||||
|
|
|
|||
Reference in a new issue