diff options
| author | Conrad Ludgate <conradludgate@gmail.com> | 2023-08-18 21:45:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-18 20:45:29 +0000 |
| commit | aa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be (patch) | |
| tree | 74a027ed4cc186426851afc42cb0da23c3de043d /Cargo.toml | |
| parent | Add kv map builder and list function (#1179) (diff) | |
| download | atuin-aa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be.zip | |
Update dependencies (#1181)
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -32,12 +32,15 @@ interim = { version = "0.1.0", features = ["chrono"] } itertools = "0.10.5" rand = { version = "0.8.5", features = ["std"] } semver = "1.0.14" -serde = { version = "1.0.145", features = ["derive"] } +# https://github.com/serde-rs/serde/issues/2538 +# I don't trust dtolnay with our user's builds. especially as we +# have things like encryption keys +serde = { version = "1.0.145, <=1.0.171", features = ["derive"] } serde_json = "1.0.99" tokio = { version = "1", features = ["full"] } uuid = { version = "1.3", features = ["v4", "serde"] } whoami = "1.1.2" -typed-builder = "0.14.0" +typed-builder = "0.15.0" pretty_assertions = "1.3.0" [workspace.dependencies.reqwest] @@ -46,5 +49,5 @@ features = ["json", "rustls-tls-native-roots"] default-features = false [workspace.dependencies.sqlx] -version = "0.6" +version = "0.7.1" features = ["runtime-tokio-rustls", "chrono", "postgres", "uuid"] |
