exclude chrono default features

This commit is contained in:
Rob Ede 2022-08-08 15:15:54 +02:00 committed by GitHub
parent 9f3039407a
commit 5735c25e69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ path = "src/lib.rs"
[dependencies]
async-stream = { version = "^0.3" }
async-trait = { version = "^0.1" }
chrono = { version = "^0.4", optional = true }
chrono = { version = "^0", default-features = false, features = ["clock"], optional = true }
time = { version = "^0.3", optional = true }
futures = { version = "^0.3" }
futures-util = { version = "^0.3" }

View File

@ -39,7 +39,7 @@ sqlx = { version = "^0.6", default-features = false, features = [ "mysql", "post
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tracing = { version = "0.1" }
url = "^2.2"
chrono = "0.4"
chrono = { version = "^0", default-features = false, features = ["clock"] }
regex = "1"
[dev-dependencies]