Skip to content

Commit

Permalink
chore(deps): Unify the anyhow version dependency (#498)
Browse files Browse the repository at this point in the history
Since iroh is a library, or will be, we should not have too strict a
version requirement, so simply requiring version 1.
  • Loading branch information
flub authored Nov 16, 2022
1 parent f8af48a commit cade4e5
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion iroh-bitswap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ prost-build = "0.11.1"

[dependencies]
ahash = "0.8.0"
anyhow = "1.0.65"
anyhow = "1"
async-broadcast = "0.4.1"
async-channel = "1.7.1"
async-trait = "0.1.57"
Expand Down
2 changes: 1 addition & 1 deletion iroh-localops/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
anyhow = "1"

[target.'cfg(unix)'.dependencies]
nix = { version = "0.25", features = ["signal", "process"]}
2 changes: 1 addition & 1 deletion iroh-p2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "Implementation of the p2p part of iroh"

[dependencies]
ahash = "0.8.0"
anyhow = "1.0"
anyhow = "1"
async-stream = "0.3.3"
async-trait = "0.1.56"
asynchronous-codec = "0.6.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "RPC type client for iroh"

[dependencies]

anyhow = "1.0.57"
anyhow = "1"
async-stream = "0.3.3"
async-trait = "0.1.56"
bytes = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-rpc-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "RPC type definitions for iroh"


[dependencies]
anyhow = "1.0.58"
anyhow = "1"
async-trait = "0.1.56"
futures = "0.3.24"
iroh-metrics = { path = "../iroh-metrics", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion iroh-share/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/n0-computer/iroh"
description = "Sharing files with iroh"

[dependencies]
anyhow = "1.0.58"
anyhow = "1"
async-trait = "0.1.56"
bincode = "1.3.3"
bytes = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/n0-computer/iroh"
description = "Implementation of the storage part of iroh"

[dependencies]
anyhow = "1.0.57"
anyhow = "1"
async-trait = "0.1.56"
bytecheck = "0.6.7"
bytes = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/n0-computer/iroh"
description = "Utilities for iroh"

[dependencies]
anyhow = "1.0.57"
anyhow = "1"
cid = "0.8.4"
config = "0.13.1"
ctrlc = "3.2.2"
Expand Down
2 changes: 1 addition & 1 deletion iroh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Command line interface for interacting with iroh."
testing = ["dep:relative-path"]

[dependencies]
anyhow = "1.0"
anyhow = "1"
async-stream = "0.3.3"
clap = { version = "4.0.15", features = ["derive"] }
config = "0.13.1"
Expand Down
2 changes: 1 addition & 1 deletion stores/flatfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/n0-computer/iroh"
description = "Implementation of FlatFS"

[dependencies]
anyhow = "1.0.57"
anyhow = "1"
backoff = "0.4.0"
ignore = "0.4.18"

Expand Down
2 changes: 1 addition & 1 deletion stores/rocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/n0-computer/iroh"
description = "Implementation of RocksDB based Store"

[dependencies]
anyhow = "1.0.57"
anyhow = "1"
flatfs-store = { path = "../flatfs", optional = true }
rocksdb = "0.19.0"

Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
anyhow = "1"
clap = { version = "4.0.9", features = ["derive"] }
clap_mangen = "0.2.2"
dirs-next = "2.0.0"
Expand Down

0 comments on commit cade4e5

Please sign in to comment.