Replace chrono dependency by time
This commit is contained in:
parent
4e014168b4
commit
8bc7af0d3f
11 changed files with 76 additions and 76 deletions
|
|
@ -6,7 +6,6 @@ edition = "2021"
|
|||
[dependencies]
|
||||
anyhow = "1.0.58"
|
||||
async-trait = "0.1.56"
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
clap = { version = "3.2.12", features = ["derive"] }
|
||||
crossterm = "0.24.0"
|
||||
directories = "4.0.1"
|
||||
|
|
@ -16,7 +15,7 @@ log = { version = "0.4.17", features = ["std"] }
|
|||
palette = { version = "0.6.0", default-features = false, features = ["std"] }
|
||||
parking_lot = "0.12.1"
|
||||
rand = "0.8.5"
|
||||
rusqlite = { version = "0.28.0", features = ["bundled", "chrono"] }
|
||||
rusqlite = { version = "0.28.0", features = ["bundled", "time"] }
|
||||
serde = { version = "1.0.139", features = ["derive"] }
|
||||
serde_json = "1.0.82"
|
||||
thiserror = "1.0.31"
|
||||
|
|
@ -24,6 +23,10 @@ tokio = { version = "1.20.0", features = ["full"] }
|
|||
unicode-segmentation = "1.9.0"
|
||||
unicode-width = "0.1.9"
|
||||
|
||||
[dependencies.time]
|
||||
version = "0.3.11"
|
||||
features = ["macros", "formatting", "parsing", "serde"]
|
||||
|
||||
[dependencies.tokio-tungstenite]
|
||||
version = "0.17.2"
|
||||
features = ["rustls-tls-native-roots"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue