Skip to content

Commit

Permalink
set MSRV to 1.66
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus23 committed Aug 21, 2023
1 parent 8b3d649 commit 10e638a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests_and_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- stable
- nightly
# minimum version
- 1.64
- 1.66
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[workspace]
members = [
"examples",
"car-mirror",
"car-mirror-benches",
"car-mirror-wasm"
]
,
"examples"]

# See https://doc.rust-lang.org/cargo/reference/profiles.html for more info.
[profile.release.package.car-mirror-wasm]
Expand All @@ -23,4 +23,4 @@ opt-level = "s" # or 'z' to optimize "aggressively" for size
# See https://blog.rust-lang.org/2021/03/25/Rust-1.51.0.html#splitting-debug-information
[profile.dev]
split-debuginfo = "unpacked"
opt-level = 3
opt-level = 3
2 changes: 1 addition & 1 deletion car-mirror-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include = ["/src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "Apache-2.0 or MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.64"
rust-version = "1.66"
documentation = "https://docs.rs/car-mirror-wasm"
repository = "https://github.com/fission-codes/rs-car-mirror/tree/main/car-mirror-wasm"
authors = ["Stephen Akinyemi <[email protected]>"]
Expand Down
10 changes: 5 additions & 5 deletions car-mirror/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include = ["/src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "Apache-2.0 or MIT"
readme = "README.md"
edition = "2021"
rust-version = "1.64"
rust-version = "1.66"
documentation = "https://docs.rs/car-mirror"
repository = "https://github.com/fission-codes/rs-car-mirror/tree/main/car-mirror"
authors = ["Stephen Akinyemi <[email protected]>"]
Expand All @@ -25,6 +25,7 @@ doc = true
[dependencies]
anyhow = "1.0"
async-stream = "0.3.5"
async-trait = "0.1.73"
bytes = "1.4.0"
deterministic-bloom = { git = "https://github.com/wnfs-wg/deterministic-bloom#a8cd85b" }
fixedbitset = "0.4.2"
Expand All @@ -34,14 +35,13 @@ libipld = "0.16.0"
libipld-core = "0.16.0"
proptest = { version = "1.1", optional = true }
roaring-graphs = "0.12"
tokio-util = { version = "0.7.8", features = ["compat"] }
serde = "1.0.183"
serde_ipld_dagcbor = "0.4.0"
tokio = { version = "^1", features = ["io-util"] }
tokio-util = { version = "0.7.8", features = ["compat"] }
tracing = "0.1"
tracing-subscriber = "0.3"
wnfs-common = "0.1.23"
async-trait = "0.1.73"
serde_ipld_dagcbor = "0.4.0"
serde = "1.0.183"

[dev-dependencies]
async-std = { version = "1.11", features = ["attributes"] }
Expand Down

0 comments on commit 10e638a

Please sign in to comment.