File tree Expand file tree Collapse file tree 4 files changed +20
-6
lines changed
Expand file tree Collapse file tree 4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -100,4 +100,21 @@ jobs:
100100 - name : Check documentation
101101 run : RUSTDOCFLAGS="-D warnings" cargo +nightly doc --all --no-deps --all-features --document-private-items
102102 env :
103- RUSTDOCFLAGS : " -D warnings"
103+ RUSTDOCFLAGS : " -D warnings"
104+
105+ # Find unused dependencies, this will fail if any are found.
106+ cargo-shear :
107+ runs-on : ubuntu-latest
108+ timeout-minutes : 20
109+ steps :
110+ - name : Checkout sources
111+ uses : actions/checkout@v5
112+
113+ - name : Install cargo-binstall
114+ uses : cargo-bins/cargo-binstall@main
115+
116+ - name : Install cargo-shear
117+ run : cargo binstall --no-confirm cargo-shear
118+
119+ - name : Run cargo shear
120+ run : cargo shear
Original file line number Diff line number Diff line change @@ -68,8 +68,6 @@ arc-swap = "1.7.1"
6868# networking
6969quinn = " 0.11.9"
7070rcgen = " 0.14"
71- # (rustls needs to be the same version as the one used by quinn)
72- rustls = { version = " 0.21" , features = [" quic" , " dangerous_configuration" ] }
7371openssl = { version = " 0.10" }
7472
7573# benchmarking & profiling
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ The 📖 [MSG-RS Book][book] contains detailed information on how to use the lib
2828 - [x] Request/Reply
2929 - [x] Publish/Subscribe
3030- Pluggable transport layers
31- - [x] TCP
32- - [x] QUIC
31+ - [x] TCP (with TLS support)
32+ - [x] QUIC (with TLS support)
3333 - [x] IPC
3434- Useful stats: latency, throughput, packet drops
3535- Durable IO abstraction (built-in retries and reconnections)
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ tokio-stream.workspace = true
2121[dev-dependencies ]
2222bytes.workspace = true
2323tracing-subscriber = " 0.3"
24- divan = " 0.1"
2524futures.workspace = true
2625tracing.workspace = true
2726rand.workspace = true
You can’t perform that action at this time.
0 commit comments