Skip to content

Commit fa6b6e8

Browse files
committed
ci: disable some ci targets
1 parent 28808c7 commit fa6b6e8

4 files changed

Lines changed: 161 additions & 53 deletions

File tree

.github/target.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ release-name = "x86_64-linux-musl"
4242
tool = "cross"
4343

4444
# 32-bit Linux (MUSL - statically linked)
45-
[[target]]
46-
os = "ubuntu-latest"
47-
target = "i686-unknown-linux-musl"
48-
release-name = "i686-linux-musl"
49-
tool = "cross"
45+
# [[target]]
46+
# os = "ubuntu-latest"
47+
# target = "i686-unknown-linux-musl"
48+
# release-name = "i686-linux-musl"
49+
# tool = "cross"
5050

5151
# ==================== ARM Linux Targets (GNU) ====================
5252

@@ -81,18 +81,18 @@ release-name = "aarch64-linux-musl"
8181
tool = "cross"
8282

8383
# ARMv7 Linux (MUSL - soft float ABI, statically linked)
84-
[[target]]
85-
os = "ubuntu-latest"
86-
target = "armv7-unknown-linux-musleabi"
87-
release-name = "armv7-linux-musl"
88-
tool = "cross"
84+
# [[target]]
85+
# os = "ubuntu-latest"
86+
# target = "armv7-unknown-linux-musleabi"
87+
# release-name = "armv7-linux-musl"
88+
# tool = "cross"
8989

9090
# ARMv7 Linux (MUSL - hard float ABI, statically linked)
91-
[[target]]
92-
os = "ubuntu-latest"
93-
target = "armv7-unknown-linux-musleabihf"
94-
release-name = "armv7-linux-muslhf"
95-
tool = "cross"
91+
# [[target]]
92+
# os = "ubuntu-latest"
93+
# target = "armv7-unknown-linux-musleabihf"
94+
# release-name = "armv7-linux-muslhf"
95+
# tool = "cross"
9696

9797
# ==================== Windows Targets ====================
9898

Cargo.lock

Lines changed: 136 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tuic-server/Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,18 @@ license.workspace = true
1212
repository.workspace = true
1313

1414
[features]
15-
default = ["aws-lc-rs"]
15+
default = ["aws-lc-rs", "quinn", "quiche"]
1616
ring = ["rustls/ring", "rcgen/ring", "quinn/rustls-ring"]
1717
aws-lc-rs = ["dep:aws-lc-rs", "rustls/aws-lc-rs", "rcgen/aws_lc_rs", "quinn/rustls-aws-lc-rs"]
1818
jemallocator = ["tikv-jemallocator"]
19+
quinn = ["wind-tuic/quinn"]
20+
quiche = ["wind-tuic/quiche"]
1921

2022
[dependencies]
2123

2224
# Wind framework
2325
wind-core = { path = "../wind-core" }
24-
wind-tuic = { path = "../wind-tuic", features = ["server", "quinn", "quiche"] }
26+
wind-tuic = { path = "../wind-tuic", features = ["server"] }
2527
wind-acme = { path = "../wind-acme" }
2628
fast-socks5 = { version = "1" }
2729

@@ -73,7 +75,7 @@ thiserror = { version = "2", default-features = false }
7375
eyre = { version = "0.6" }
7476

7577
tikv-jemallocator = { version = "0.6", optional = true }
76-
rand = "0.10.0"
78+
rand = "0.10"
7779

7880
[dev-dependencies]
7981
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"]}

0 commit comments

Comments
 (0)