summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/arti-client/Cargo.toml2
-rw-r--r--crates/arti-rpcserver/Cargo.toml2
-rw-r--r--crates/arti/Cargo.toml2
-rw-r--r--crates/tor-async-utils/Cargo.toml2
-rw-r--r--crates/tor-bytes/Cargo.toml2
-rw-r--r--crates/tor-cell/Cargo.toml2
-rw-r--r--crates/tor-config/Cargo.toml2
-rw-r--r--crates/tor-dirmgr/Cargo.toml2
-rw-r--r--crates/tor-guardmgr/Cargo.toml2
-rw-r--r--crates/tor-hsclient/Cargo.toml2
-rw-r--r--crates/tor-hscrypto/Cargo.toml2
-rw-r--r--crates/tor-hsrproxy/Cargo.toml2
-rw-r--r--crates/tor-hsservice/Cargo.toml2
-rw-r--r--crates/tor-key-forge/Cargo.toml2
-rw-r--r--crates/tor-keymgr/Cargo.toml2
-rw-r--r--crates/tor-linkspec/Cargo.toml2
-rw-r--r--crates/tor-llcrypto/Cargo.toml2
-rw-r--r--crates/tor-memquota/Cargo.toml2
-rw-r--r--crates/tor-persist/Cargo.toml4
-rw-r--r--crates/tor-proto/Cargo.toml2
-rw-r--r--crates/tor-relay-crypto/Cargo.toml2
-rw-r--r--crates/tor-rpcbase/Cargo.toml2
-rw-r--r--crates/tor-rtmock/Cargo.toml2
-rw-r--r--crates/tor-socksproto/Cargo.toml2
-rw-r--r--crates/tor-units/Cargo.toml2
25 files changed, 26 insertions, 26 deletions
diff --git a/crates/arti-client/Cargo.toml b/crates/arti-client/Cargo.toml
index f0359fafe..a22e5267f 100644
--- a/crates/arti-client/Cargo.toml
+++ b/crates/arti-client/Cargo.toml
@@ -158,7 +158,7 @@ __is_experimental = []
anyhow = { version = "1.0.23", optional = true }
async-trait = "0.1.54"
cfg-if = "1.0.0"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
dyn-clone = { version = "1.0.11", optional = true }
diff --git a/crates/arti-rpcserver/Cargo.toml b/crates/arti-rpcserver/Cargo.toml
index e99c02d23..ea72834d9 100644
--- a/crates/arti-rpcserver/Cargo.toml
+++ b/crates/arti-rpcserver/Cargo.toml
@@ -39,7 +39,7 @@ async-trait = "0.1.54"
asynchronous-codec = { version = "0.7.0", features = ["json"] }
base64ct = "1.5.1"
bytes = "1"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
erased-serde = "0.4.2"
futures = "0.3.14"
diff --git a/crates/arti/Cargo.toml b/crates/arti/Cargo.toml
index 6cb616122..8e275b6cd 100644
--- a/crates/arti/Cargo.toml
+++ b/crates/arti/Cargo.toml
@@ -154,7 +154,7 @@ async-ctrlc = { version = "1.2.0", optional = true }
async-signal = { version = "0.2.10", optional = true }
cfg-if = "1.0.0"
clap = { version = "4.3.24", features = ["string", "wrap_help", "derive"] }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"], optional = true }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"], optional = true }
derive_builder = { version = "0.11", package = "derive_builder_fork_arti" }
fs-mistrust = { path = "../fs-mistrust", version = "0.10.0" }
futures = "0.3.14"
diff --git a/crates/tor-async-utils/Cargo.toml b/crates/tor-async-utils/Cargo.toml
index be3618465..411cbbfa3 100644
--- a/crates/tor-async-utils/Cargo.toml
+++ b/crates/tor-async-utils/Cargo.toml
@@ -13,7 +13,7 @@ categories = ["rust-patterns"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
educe = "0.4.22"
futures = "0.3.14"
oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.2.3" }
diff --git a/crates/tor-bytes/Cargo.toml b/crates/tor-bytes/Cargo.toml
index 41cba0a95..1a11e6537 100644
--- a/crates/tor-bytes/Cargo.toml
+++ b/crates/tor-bytes/Cargo.toml
@@ -13,7 +13,7 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
bytes = "1"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
digest = { version = "0.10.0", features = ["subtle", "mac"] }
educe = "0.4.22"
safelog = { path = "../safelog", version = "0.4.7" }
diff --git a/crates/tor-cell/Cargo.toml b/crates/tor-cell/Cargo.toml
index fec543181..18667df62 100644
--- a/crates/tor-cell/Cargo.toml
+++ b/crates/tor-cell/Cargo.toml
@@ -54,7 +54,7 @@ amplify = { version = "4", default-features = false, features = ["derive"] }
bitflags = "2"
bytes = "1"
caret = { path = "../caret", version = "0.5.3" }
-derive-deftly = "1.1.0"
+derive-deftly = "1.2.0"
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
paste = "1"
diff --git a/crates/tor-config/Cargo.toml b/crates/tor-config/Cargo.toml
index a13c1a40e..9fee72f9d 100644
--- a/crates/tor-config/Cargo.toml
+++ b/crates/tor-config/Cargo.toml
@@ -37,7 +37,7 @@ __is_experimental = []
[dependencies]
amplify = { version = "4", default-features = false, features = ["derive"] }
cfg-if = "1.0.0"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
educe = "0.4.22"
either = "1"
diff --git a/crates/tor-dirmgr/Cargo.toml b/crates/tor-dirmgr/Cargo.toml
index 0fc6bc875..f17a395d1 100644
--- a/crates/tor-dirmgr/Cargo.toml
+++ b/crates/tor-dirmgr/Cargo.toml
@@ -78,7 +78,7 @@ oneshot-fused-workaround = { path = "../oneshot-fused-workaround", version = "0.
paste = "1"
postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
rand = "0.9.1"
-rusqlite = { version = "0.36.0", features = ["time"] }
+rusqlite = { version = "0.37.0", features = ["time"] }
safelog = { path = "../safelog", version = "0.4.7" }
scopeguard = "1"
serde = { version = "1.0.103", features = ["derive"] }
diff --git a/crates/tor-guardmgr/Cargo.toml b/crates/tor-guardmgr/Cargo.toml
index 85fc876f0..ecb1e5d71 100644
--- a/crates/tor-guardmgr/Cargo.toml
+++ b/crates/tor-guardmgr/Cargo.toml
@@ -60,7 +60,7 @@ __is_experimental = []
[dependencies]
amplify = { version = "4", default-features = false, features = ["derive"] }
base64ct = "1.5.1"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
dyn-clone = "1.0.4"
diff --git a/crates/tor-hsclient/Cargo.toml b/crates/tor-hsclient/Cargo.toml
index 63a31dccf..6f31aacb3 100644
--- a/crates/tor-hsclient/Cargo.toml
+++ b/crates/tor-hsclient/Cargo.toml
@@ -55,7 +55,7 @@ experimental = ["keymgr", "hs-pow-full"]
[dependencies]
async-trait = "0.1.54"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
either = "1"
diff --git a/crates/tor-hscrypto/Cargo.toml b/crates/tor-hscrypto/Cargo.toml
index 7bdcbc7aa..e06d60452 100644
--- a/crates/tor-hscrypto/Cargo.toml
+++ b/crates/tor-hscrypto/Cargo.toml
@@ -46,7 +46,7 @@ arrayvec = { version = "0.7.4", optional = true }
blake2 = { version = "0.10.6", optional = true }
cipher = { version = "0.4.1", features = ["zeroize"], optional = true }
data-encoding = "2.3.1" # want MSVC i686 build fix, data-encoding/issues/33
-derive-deftly = { version = "1.1.0", optional = true }
+derive-deftly = { version = "1.2.0", optional = true }
derive_more = { version = "2.0.1", features = ["full"] }
digest = "0.10.0"
equix = { path = "../equix", version = "0.2.5", optional = true }
diff --git a/crates/tor-hsrproxy/Cargo.toml b/crates/tor-hsrproxy/Cargo.toml
index 1974b3c01..784076db5 100644
--- a/crates/tor-hsrproxy/Cargo.toml
+++ b/crates/tor-hsrproxy/Cargo.toml
@@ -43,7 +43,7 @@ __is_experimental = []
restricted-discovery = ["tor-hsservice/restricted-discovery", "__is_experimental"]
[dependencies]
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
futures = "0.3.14"
# postage = { version = "0.5.0", default-features = false, features = ["futures-traits"] }
diff --git a/crates/tor-hsservice/Cargo.toml b/crates/tor-hsservice/Cargo.toml
index 9e783cf34..5d77ebc10 100644
--- a/crates/tor-hsservice/Cargo.toml
+++ b/crates/tor-hsservice/Cargo.toml
@@ -75,7 +75,7 @@ arrayvec = { version = "0.7.4", features = ["serde"], optional = true }
async-trait = "0.1.54"
base64ct = "1.5.1"
cfg-if = "1.0.0"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
digest = "0.10.0"
diff --git a/crates/tor-key-forge/Cargo.toml b/crates/tor-key-forge/Cargo.toml
index e654f03c9..a0c1dd323 100644
--- a/crates/tor-key-forge/Cargo.toml
+++ b/crates/tor-key-forge/Cargo.toml
@@ -25,7 +25,7 @@ __is_nonadditive = []
__is_experimental = []
[dependencies]
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
downcast-rs = "2.0.1"
paste = "1"
diff --git a/crates/tor-keymgr/Cargo.toml b/crates/tor-keymgr/Cargo.toml
index 876a2ee56..7211a88d5 100644
--- a/crates/tor-keymgr/Cargo.toml
+++ b/crates/tor-keymgr/Cargo.toml
@@ -55,7 +55,7 @@ amplify = { version = "4", default-features = false, features = ["derive"] }
arrayvec = "0.7.3"
cfg-if = "1.0.0"
data-encoding = { version = "2.3.1", optional = true }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
downcast-rs = "2.0.1"
diff --git a/crates/tor-linkspec/Cargo.toml b/crates/tor-linkspec/Cargo.toml
index 450a3ccbb..25952f5e8 100644
--- a/crates/tor-linkspec/Cargo.toml
+++ b/crates/tor-linkspec/Cargo.toml
@@ -34,7 +34,7 @@ __is_experimental = []
base64ct = "1.5.1"
by_address = "1"
caret = { path = "../caret", version = "0.5.3" }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
hex = "0.4"
diff --git a/crates/tor-llcrypto/Cargo.toml b/crates/tor-llcrypto/Cargo.toml
index 995db9f9f..feeb11290 100644
--- a/crates/tor-llcrypto/Cargo.toml
+++ b/crates/tor-llcrypto/Cargo.toml
@@ -47,7 +47,7 @@ cipher = { version = "0.4.3", optional = true, features = ["zeroize"] }
ctr = { version = "0.9", features = ["zeroize"] }
curve25519-dalek = "4.1"
der-parser = { version = "10", features = ["serialize"] }
-derive-deftly = { version = "1.1.0", optional = true }
+derive-deftly = { version = "1.2.0", optional = true }
derive_more = { version = "2.0.1", features = ["full"] }
digest = "0.10.0"
ed25519-dalek = { version = "2.1", features = ["batch", "hazmat"] }
diff --git a/crates/tor-memquota/Cargo.toml b/crates/tor-memquota/Cargo.toml
index 43bc4e826..232d3affe 100644
--- a/crates/tor-memquota/Cargo.toml
+++ b/crates/tor-memquota/Cargo.toml
@@ -13,7 +13,7 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
cfg-if = "1.0.0"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
dyn-clone = "1.0.17"
educe = "0.4.22"
diff --git a/crates/tor-persist/Cargo.toml b/crates/tor-persist/Cargo.toml
index 2a38da292..cca5788d9 100644
--- a/crates/tor-persist/Cargo.toml
+++ b/crates/tor-persist/Cargo.toml
@@ -32,7 +32,7 @@ __is_experimental = []
[dependencies]
amplify = { version = "4", default-features = false, features = ["derive"], optional = true }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
filetime = { version = "0.2", default-features = false }
fs-mistrust = { path = "../fs-mistrust", version = "0.10.0", features = ["walkdir"] }
@@ -54,7 +54,7 @@ void = "1"
[dev-dependencies]
anyhow = { version = "1.0.23" }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
humantime = "2"
itertools = "0.14.0"
tempfile = "3"
diff --git a/crates/tor-proto/Cargo.toml b/crates/tor-proto/Cargo.toml
index 424b78a60..0247af2eb 100644
--- a/crates/tor-proto/Cargo.toml
+++ b/crates/tor-proto/Cargo.toml
@@ -83,7 +83,7 @@ cfg-if = "1.0.0"
cipher = { version = "0.4.1", features = ["zeroize"] }
coarsetime = "0.1.20"
ctr = { version = "0.9", optional = true, features = ["zeroize"] }
-derive-deftly = "1.1.0"
+derive-deftly = "1.2.0"
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "2.0.1", features = ["full"] }
digest = "0.10.0"
diff --git a/crates/tor-relay-crypto/Cargo.toml b/crates/tor-relay-crypto/Cargo.toml
index 44073bdec..8b324118a 100644
--- a/crates/tor-relay-crypto/Cargo.toml
+++ b/crates/tor-relay-crypto/Cargo.toml
@@ -24,7 +24,7 @@ full = [
]
[dependencies]
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
humantime = "2"
tor-cert = { path = "../tor-cert", version = "0.32.0", features = ["encode"] }
diff --git a/crates/tor-rpcbase/Cargo.toml b/crates/tor-rpcbase/Cargo.toml
index 6875c513e..b5249a83c 100644
--- a/crates/tor-rpcbase/Cargo.toml
+++ b/crates/tor-rpcbase/Cargo.toml
@@ -12,7 +12,7 @@ categories = ["asynchronous"]
repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
downcast-rs = "2.0.1"
erased-serde = "0.4.2"
diff --git a/crates/tor-rtmock/Cargo.toml b/crates/tor-rtmock/Cargo.toml
index f1fca790c..df84b4c05 100644
--- a/crates/tor-rtmock/Cargo.toml
+++ b/crates/tor-rtmock/Cargo.toml
@@ -15,7 +15,7 @@ repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
amplify = { version = "4", default-features = false, features = ["derive"] }
assert_matches = "1.5.0"
async-trait = "0.1.54"
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
derive_more = { version = "2.0.1", features = ["full"] }
educe = "0.4.22"
futures = "0.3.14"
diff --git a/crates/tor-socksproto/Cargo.toml b/crates/tor-socksproto/Cargo.toml
index 2e19515d8..2ace08c17 100644
--- a/crates/tor-socksproto/Cargo.toml
+++ b/crates/tor-socksproto/Cargo.toml
@@ -30,7 +30,7 @@ full = [
amplify = { version = "4", default-features = false, features = ["derive"] }
arbitrary = { version = "1.0.1", optional = true, features = ["derive"] }
caret = { path = "../caret", version = "0.5.3" }
-derive-deftly = { version = "~1.1.0", features = ["full", "beta"] }
+derive-deftly = { version = "~1.2.0", features = ["full", "beta"] }
educe = "0.4.22"
safelog = { path = "../safelog", version = "0.4.7" }
subtle = "2"
diff --git a/crates/tor-units/Cargo.toml b/crates/tor-units/Cargo.toml
index d0871a8b1..158dae5d1 100644
--- a/crates/tor-units/Cargo.toml
+++ b/crates/tor-units/Cargo.toml
@@ -13,7 +13,7 @@ categories = ["rust-patterns"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-derive-deftly = { version = "1.1.0", optional = true }
+derive-deftly = { version = "1.2.0", optional = true }
derive_more = { version = "2.0.1", features = ["full"] }
serde = { version = "1.0.103", features = ["derive"] }
thiserror = "2"