aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorConrad Ludgate <conradludgate@gmail.com>2023-08-18 21:45:29 +0100
committerGitHub <noreply@github.com>2023-08-18 20:45:29 +0000
commitaa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be (patch)
tree74a027ed4cc186426851afc42cb0da23c3de043d /Cargo.toml
parentAdd kv map builder and list function (#1179) (diff)
downloadatuin-aa8e5f5c04524d3d5c6f1d5b6c4616dbdb8d40be.zip
Update dependencies (#1181)
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml9
1 files changed, 6 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 47ac1916..9b9bfc01 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]