Commit 9fbb4754 authored by Ian Jackson's avatar Ian Jackson 💬
Browse files

Merge branch 'fs-mistrust' into 'main'

Bump minor version of fs-mistrust

Closes #1841

See merge request !2777
parents c6bb734f d69fe98f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -71,6 +71,8 @@ See also what other projects are writing about Lunar:
- `tor-proto`: `ConversationInHandler` now only has one lifetime parameter;
  and `::send_message` is now `async`.
  !2747
- `fs-mistrust`: A few methods now take `&self` rather than `self`.
  !2707

### Relay development

+1 −1
Original line number Diff line number Diff line
@@ -2181,7 +2181,7 @@ dependencies = [

[[package]]
name = "fs-mistrust"
version = "0.8.4"
version = "0.9.0"
dependencies = [
 "derive_builder_fork_arti",
 "dirs 6.0.0",
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ arti = { path = "../arti", version = "1.4.0" }
arti-client = { package = "arti-client", path = "../arti-client", version = "0.27.0" }
clap = { version = "4.3.24", features = ["wrap_help"] }
float-ord = "0.3"
fs-mistrust = { path = "../fs-mistrust", version = "0.8.4" }
fs-mistrust = { path = "../fs-mistrust", version = "0.9.0" }
futures = "0.3.14"
rand = "0.8"
serde = { version = "1.0.103", features = ["derive"] }
+1 −1
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
dyn-clone = { version = "1.0.11", optional = true }
educe = "0.4.6"
fs-mistrust = { path = "../fs-mistrust", version = "0.8.4", features = ["serde"] }
fs-mistrust = { path = "../fs-mistrust", version = "0.9.0", features = ["serde"] }
futures = "0.3.14"
hostname-validator = "1.1.1"
humantime = "2"
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ clap = { version = "4.3.24", features = ["string", "wrap_help", "derive"] }
derive_builder = { version = "0.11.2", package = "derive_builder_fork_arti" }
derive_more = { version = "1.0.0", features = ["full"] }
directories = "5"
fs-mistrust = { path = "../fs-mistrust", version = "0.8.4", features = ["serde"] }
fs-mistrust = { path = "../fs-mistrust", version = "0.9.0", features = ["serde"] }
once_cell = "1"
rand = "0.8.5"
safelog = { path = "../safelog", version = "0.4.2" }
Loading