Skip to content

Commit 1522fb5

Browse files
committed
chore: pin required dependencies for MSRV
1 parent a123db6 commit 1522fb5

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/cont_integration.yml

+14
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,21 @@ jobs:
5555
if: matrix.rust.version == '1.63.0'
5656
run: |
5757
cargo update -p home --precise 0.5.5
58+
cargo update -p tor-dirclient --precise 0.6.3
59+
cargo update -p tor-config --precise 0.8.0
60+
cargo update -p tor-netdoc --precise 0.6.3
61+
cargo update -p tor-dirmgr --precise 0.9.3
62+
cargo update -p regex --precise 1.9.6
63+
cargo update -p zstd-sys --precise 2.0.8+zstd.1.5.5
64+
cargo update -p time:0.3.31 --precise 0.3.20
5865
cargo update -p tor-error --precise 0.4.1
66+
cargo update -p toml:0.7.8 --precise 0.7.3
67+
cargo update -p toml_edit --precise 0.19.8
68+
cargo update -p winnow --precise 0.4.1
69+
cargo update -p serde_spanned --precise 0.6.1
70+
cargo update -p backtrace --precise 0.3.68
71+
cargo update -p toml_datetime --precise 0.6.1
72+
cargo update -p tinystr --precise 0.7.1
5973
- name: Build
6074
run: cargo build --features ${{ matrix.features }} --no-default-features
6175
- name: Clippy

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ arti-client = { version = "0.8.3", optional = true }
3131
tor-rtcompat = { version = "0.8.2", optional = true, features = ["tokio"]}
3232
tls-api = { version = "0.9.0", optional = true }
3333
tls-api-native-tls = { version = "0.9.0", optional = true }
34-
ahash = { version = "=0.8.6" } # ahash 0.8.7 version don't work with our MSRV on aarch64, check: https://github.com/tkaitchuck/aHash/issues/195
34+
ahash = { version = "=0.8.6", optional = true } # ahash 0.8.7 version don't work with our MSRV on aarch64, check: https://github.com/tkaitchuck/aHash/issues/195
3535

3636
[target.'cfg(target_vendor="apple")'.dependencies]
3737
tls-api-openssl = { version = "0.9.0", optional = true }
@@ -43,7 +43,7 @@ electrum-client = "0.16.0"
4343
lazy_static = "1.4.0"
4444

4545
[features]
46-
default = ["blocking", "async", "async-https", "async-arti-hyper"]
46+
default = ["blocking", "async", "async-https"]
4747
blocking = ["ureq", "ureq/socks-proxy"]
4848
async = ["reqwest", "reqwest/socks"]
4949
async-https = ["async", "reqwest/default-tls"]

0 commit comments

Comments
 (0)