fix: limit serde_with features
This commit is contained in:
parent
c688ff74e9
commit
6ad77d8daa
3 changed files with 8 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] }
|
|||
futures = "0.3.21"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
serde_with = "3.0.0"
|
||||
serde_with = { version = "3.0.0", default-features = false, features = ["macros"] }
|
||||
anyhow = "1.0"
|
||||
log = "0.4.17"
|
||||
env_logger = "0.10.0"
|
||||
|
|
|
|||
Reference in a new issue