You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# TODO: some usages of reqwest were using native-tls. Verify it's ok to use rustls everywhere.
65
74
reqwest = { version = "0.11", default_features = false, features = ["json", "rustls-tls", "stream"] }
66
75
rocksdb = { version = "0.17", default-features = false, features = ["snappy", "rtti"] }
67
76
rusqlite = { version = "0.27", features = ["bundled-full"]}
@@ -82,7 +91,6 @@ tempdir = "0.3"
82
91
thiserror = "1.0"
83
92
time = { version = "0.3", features = ["serde-well-known", "macros", "formatting", "parsing"] }
84
93
tinyvec = {version = "1.6", features = ["alloc"]}
85
-
# TODO: verify if it's ok to use "full" feature here, or if we need to be more conservative and selectively enable feeatures in crates
86
94
tokio = { version = "1.15", features = ["full"] }
87
95
tokio-util = { version = "0.7", features = ["io"] }
88
96
tonic = {version = "0.8", features = [ "tls", "tls-roots"]}
@@ -103,7 +111,6 @@ zstd = "0.11.2"
103
111
104
112
# Used exclusively as dev-dependencies
105
113
assert_cmd = "2.0"
106
-
# TODO: upgrade insta. Version 1.15 seems to contain a breaking change to the serialization of RawValue, so holding off until I can confirm that's all it is.
107
114
insta = { version = "1.20", features = ["redactions", "json", "yaml"]}
0 commit comments