Compare commits

...

11 commits

Author SHA1 Message Date
7a2c3dd82b
update ci
Some checks failed
Rust CI / Clippy (push) Failing after 2s
Rust CI / Test Suite (push) Failing after 8s
2025-03-14 22:28:23 +01:00
ce71b2ceec
reorganize the workspace
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
2025-03-14 22:24:47 +01:00
16b75c64f9
dont have fucking tokio as default dep
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
2025-03-14 21:29:22 +01:00
8339ba2989 i got the graph example stuff now
Some checks failed
cargo devel CI / cargo CI (push) Failing after 13s
2025-01-09 05:42:52 +01:00
98641c5a32 ignore cargo.lock
Some checks failed
cargo devel CI / cargo CI (push) Failing after 13s
2025-01-09 02:33:54 +01:00
edf1e381fd add graph example 2025-01-09 02:33:16 +01:00
ddaee00b47 graph basic start 2025-01-09 02:29:59 +01:00
c7975c1859
threadpool example
All checks were successful
cargo devel CI / cargo CI (push) Successful in 7m14s
2024-09-16 10:23:28 +02:00
73193b430d
moar doc
All checks were successful
cargo devel CI / cargo CI (push) Successful in 6m21s
2024-09-10 15:39:42 +02:00
88dd0f7d9c
dont remember lol
All checks were successful
cargo devel CI / cargo CI (push) Successful in 4m38s
2024-09-09 14:51:52 +02:00
3e27923d14
iter-prod
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
2024-09-09 14:51:32 +02:00
108 changed files with 560 additions and 6657 deletions

View file

@ -1,50 +0,0 @@
name: cargo devel CI
on:
push:
branches:
- '**'
# - '!master'
jobs:
format:
name: cargo CI
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: get repo
uses: actions/checkout@v4
- name: install rust
uses: https://github.com/dtolnay/rust-toolchain@stable
- name: install additional rust things
run: |
rustup component add rustfmt
rustup component add clippy
- name: install additional dependencies
run: |
apt update -y
apt install libgtk-3-dev librust-atk-dev -y
- name: config custom registry
run: |
mkdir -p ~/.cargo/
echo "" > ~/.cargo/config.toml
echo "[registry]" >> ~/.cargo/config.toml
echo 'cscherr = "cscherr"' >> ~/.cargo/config.toml
echo '[registries.cscherr]' >> ~/.cargo/config.toml
echo 'index = "https://git.cscherr.de/PlexSheep/_cargo-index.git"' >> ~/.cargo/config.toml
cat ~/.cargo/config.toml
- name: cargo clippy check
run: cargo clippy --all-features --all-targets --workspace
- name: cargo clippy fix
run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt
run: cargo fmt --all
- name: cargo test
run: cargo test --all-features --all-targets --workspace && cargo test --all-features --workspace --doc
- name: commit back to repository
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
commit_message: automatic cargo CI changes

View file

@ -1,51 +1,51 @@
name: cargo devel CI
name: Rust CI
on:
push:
branches:
- '**'
# - '!master'
env:
CARGO_TERM_COLOR: always
jobs:
CI:
test:
name: Test Suite
runs-on: ubuntu-latest
name: cargo CI
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: ./cargo.sh test --all-features --workspace --all-targets
clippy:
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
name: Clippy
runs-on: ubuntu-latest
steps:
- name: get repo
- name: Checkout repository
uses: actions/checkout@v4
- name: install rust
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: install additional rust things
run: |
rustup component add rustfmt
rustup component add clippy
- name: install additional dependencies
run: |
apt update -y
apt install libgtk-3-dev librust-atk-dev -y
- name: config custom registry
run: |
mkdir -p ~/.cargo/
echo "" > ~/.cargo/config.toml
echo "[registry]" >> ~/.cargo/config.toml
echo 'cscherr = "cscherr"' >> ~/.cargo/config.toml
echo '[registries.cscherr]' >> ~/.cargo/config.toml
echo 'index = "https://git.cscherr.de/PlexSheep/_cargo-index.git"' >> ~/.cargo/config.toml
cat ~/.cargo/config.toml
- name: cargo clippy check
run: cargo clippy --all-features --all-targets --workspace
- name: cargo clippy fix
run: cargo clippy --fix --all-features --all-targets --workspace
- name: cargo fmt
with:
components: clippy,rustfmt
- uses: Swatinem/rust-cache@v2
- name: Clippy check and fix
run: cargo clippy --fix --all-targets --all-features --workspace
- name: Check formatting
run: cargo fmt --all
- name: cargo test
run: cargo test --all-features --all-targets --workspace && cargo test --all-features --workspace --doc
- name: commit back to repository
uses: stefanzweifel/git-auto-commit-action@v5
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
commit_message: automatic cargo CI changes
# These defaults somehow do not work for me, so I've set them
# explicitly
# The big number is the userid of the bot
commit_user_name: github-actions[bot]
commit_user_email: 41898282+github-actions[bot]@users.noreply.github.com
commit_author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> # defaults to "username <username@users.noreply.github.com>", where "username" belongs to the author of the commit that triggered the run
commit_message: "ci: automatic Rust CI changes"

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
Cargo.lock
/target
members/c-bindings/lib/CMakeCache.txt
members/c-bindings/lib/cmake_install.cmake
@ -6,3 +7,5 @@ members/c-bindings/lib/libtest.so.1
members/c-bindings/lib/libtest.so.1.0.1
members/sqlite-demo/data/cats.db
members/diesel-demo/data/dieseldemo.db
members/graph/src/output
Cargo.lock

6126
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,80 +1,45 @@
[workspace]
members = [
".",
"members/criterion-demo",
"members/cucumber-demo",
"members/panic-calm",
"members/pest-demo",
"members/revsqrt",
"members/serde-json-demo",
"members/shortc",
"members/socker",
"members/tokryon",
"members/tokio-send-sync",
"members/matchmatchmatch",
"members/future_stream",
"members/mpsc",
"members/mpsc-full",
"members/echargs",
"members/claptest",
"members/rest",
"members/rest-queued",
"members/fluent-demo",
"members/onlytoken",
"members/sqlite-demo",
"members/diesel-demo",
"members/ptlog",
"members/hello-world",
"members/statusline",
"members/clap-repl-demo",
"members/arithmetics",
"members/egui-demo",
"members/rfd-demo",
]
default-members = [
".",
"members/rfd-demo",
"members/egui-demo",
"members/arithmetics",
"members/statusline",
"members/ptlog",
"members/diesel-demo",
"members/onlytoken",
"members/fluent-demo",
"members/echargs",
"members/revsqrt",
"members/claptest",
"members/mpsc",
"members/mpsc-full",
"members/criterion-demo",
"members/shortc",
"members/pest-demo",
"members/serde-json-demo",
"members/cucumber-demo",
"members/panic-calm",
"members/socker",
"members/tokryon",
"members/tokio-send-sync",
"members/matchmatchmatch",
"members/future_stream",
"members/rest",
"members/rest-queued",
"members/sqlite-demo",
".",
"crates/criterion-demo",
"crates/cucumber-demo",
"crates/panic-calm",
"crates/pest-demo",
"crates/revsqrt",
"crates/serde-json-demo",
"crates/shortc",
"crates/socker",
"crates/tokryon",
"crates/tokio-send-sync",
"crates/matchmatchmatch",
"crates/future_stream",
"crates/mpsc",
"crates/mpsc-full",
"crates/echargs",
"crates/claptest",
"crates/rest",
"crates/rest-queued",
"crates/fluent-demo",
"crates/onlytoken",
"crates/sqlite-demo",
"crates/diesel-demo",
"crates/ptlog",
"crates/hello-world",
"crates/statusline",
"crates/clap-repl-demo",
"crates/arithmetics",
"crates/egui-demo",
"crates/rfd-demo",
"crates/iter-prod",
"crates/tpdemo",
"crates/graph",
"crates/sdl-idiot",
]
default-members = ["."]
[workspace.dependencies]
anyhow = "1.0.79"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = [
"net",
"rt",
"macros",
"rt-multi-thread",
"io-util",
"time",
"sync",
] }
futures = { version = "0.3.30", features = ["executor"] }
serde = { version = "1.0.171", features = ["derive"] }
serde_json = "1.0.102"
libpt = { version = "0.5.1", features = ["full"] }

View file

@ -7,6 +7,14 @@ dependencies.
Completeness is not a goal of this project.
## Compiling
Please prefer the use of the [cargo.sh](./cargo.sh) script.
```bash
$ ./cargo.sh CRATE CARGO_COMMANDS...
```
## Highlighted demo crates
**Basics**
@ -40,9 +48,17 @@ Completeness is not a goal of this project.
## Warnings
* Some of the crates, especially those related to GUIs, may not work in WSL
* Some of the crates, especially those related to GUIs, may not work in WSL
environments.
## Additional dependencies
If you need to compile the whole workspace:
```bash
apt install libgtk-3-dev librust-atk-dev -y
```
## Rust unsafe
Unsafe rust offers many possibilities otherwise locked from rust, which might

6
cargo.sh Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
ROOT=$PWD
CARGO_TARGET_DIR=$PWD/target
cargo --config "target-dir=\"$ROOT/target\"" $@

8
cargo_crate.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
CRATE="$1"
ROOT=$PWD
CARGO_TARGET_DIR=$PWD/target
echo "using crate $CRATE"
cargo --config "target-dir=\"$ROOT/target\"" ${@:2} --manifest-path $ROOT/crates/${CRATE}/Cargo.toml

View file

@ -6,5 +6,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio.workspace = true
futures.workspace = true
tokio = { version = "1.35.1", features = [
"net",
"rt",
"macros",
"rt-multi-thread",
"io-util",
"time",
"sync",
] }
futures = { version = "0.3.30", features = ["executor"] }

11
crates/graph/Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "graph"
version = "0.1.0"
edition = "2021"
[dependencies]
chrono = "0.4.39"
plotters = "0.3.7"
rand = "0.8.5"
rand_distr = "0.4.3"
rand_xorshift = "0.3.0"

296
crates/graph/src/main.rs Normal file
View file

@ -0,0 +1,296 @@
use std::{collections::HashMap, io::ErrorKind};
use chrono::{DateTime, Timelike, Utc};
use plotters::prelude::*;
fn main() {
if let Err(e) = std::fs::create_dir("output") {
if e.kind() != ErrorKind::AlreadyExists {
eprintln!("could not create the output directory: {e}");
std::process::exit(1)
}
}
println!("generating coordinate system");
coordinate_system();
println!("generating histogram");
histo().expect("histogram failed");
println!("generating area chart");
area().expect("area failed");
println!("generating timed area chart");
time_area().expect("time area failed");
println!("all done!")
}
fn coordinate_system() {
let root_area = BitMapBackend::new("output/coords.png", (600, 400)).into_drawing_area();
root_area.fill(&WHITE).unwrap();
let mut ctx = ChartBuilder::on(&root_area)
.set_label_area_size(LabelAreaPosition::Left, 40)
.set_label_area_size(LabelAreaPosition::Bottom, 40)
.caption("Line Plot Demo", ("sans-serif", 40))
.build_cartesian_2d(-10..10, 0..100)
.unwrap();
ctx.configure_mesh().draw().unwrap();
ctx.draw_series(LineSeries::new((-10..=10).map(|x| (x, x * x)), &GREEN))
.unwrap();
}
fn histo() -> Result<(), Box<dyn std::error::Error>> {
const OUT_FILE_NAME: &str = "output/histogram.png";
let root = BitMapBackend::new(OUT_FILE_NAME, (640, 480)).into_drawing_area();
root.fill(&WHITE)?;
let mut chart = ChartBuilder::on(&root)
.x_label_area_size(35)
.y_label_area_size(40)
.margin(5)
.caption("Histogram Test", ("sans-serif", 50.0))
.build_cartesian_2d((0u32..10u32).into_segmented(), 0u32..10u32)?;
chart
.configure_mesh()
.disable_x_mesh()
.bold_line_style(WHITE.mix(0.3))
.y_desc("Count")
.x_desc("Bucket")
.axis_desc_style(("sans-serif", 15))
.draw()?;
let data = [
0u32, 1, 1, 1, 4, 2, 5, 7, 8, 6, 4, 2, 1, 8, 3, 3, 3, 4, 4, 3, 3, 3,
];
chart.draw_series(
Histogram::vertical(&chart)
.style(RED.mix(0.5).filled())
.data(data.iter().map(|x: &u32| (*x, 1))),
)?;
// To avoid the IO failure being ignored silently, we manually call the present function
root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir");
Ok(())
}
fn area() -> Result<(), Box<dyn std::error::Error>> {
const OUT_FILE_NAME: &str = "output/area.png";
use rand::SeedableRng;
use rand_distr::{Distribution, Normal};
use rand_xorshift::XorShiftRng;
let data: Vec<_> = {
let norm_dist = Normal::new(500.0, 100.0).unwrap();
let mut x_rand = XorShiftRng::from_seed(*b"MyFragileSeed345");
let x_iter = norm_dist.sample_iter(&mut x_rand);
x_iter
.filter(|x| *x < 1500.0)
.take(100)
.zip(0..)
.map(|(x, b)| x + (b as f64).powf(1.2))
.collect()
};
let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area();
root.fill(&WHITE)?;
let mut chart = ChartBuilder::on(&root)
.set_label_area_size(LabelAreaPosition::Left, 60)
.set_label_area_size(LabelAreaPosition::Bottom, 60)
.caption("Area Chart Demo", ("sans-serif", 40))
.build_cartesian_2d(0..(data.len() - 1), 0.0..1500.0)?;
chart
.configure_mesh()
.disable_x_mesh()
.disable_y_mesh()
.draw()?;
chart.draw_series(
AreaSeries::new(
(0..).zip(data.iter()).map(|(x, y)| (x, *y)),
0.0,
RED.mix(0.2),
)
.border_style(RED),
)?;
// To avoid the IO failure being ignored silently, we manually call the present function
root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir");
Ok(())
}
fn time_area() -> Result<(), Box<dyn std::error::Error>> {
use plotters::prelude::*;
use chrono::{TimeZone, Utc};
const OUT_FILE_NAME: &str = "output/timed_data.png";
let root = BitMapBackend::new(OUT_FILE_NAME, (1024, 768)).into_drawing_area();
root.fill(&WHITE)?;
let mut chart = ChartBuilder::on(&root)
.margin(10)
.caption(
"Monthly Average Temperate in Salt Lake City, UT",
("sans-serif", 40),
)
.set_label_area_size(LabelAreaPosition::Left, 60)
.set_label_area_size(LabelAreaPosition::Right, 60)
.set_label_area_size(LabelAreaPosition::Bottom, 40)
.build_cartesian_2d(
(Utc.ymd(2010, 1, 1)..Utc.ymd(2018, 12, 1)).monthly(),
14.0..104.0,
)?
.set_secondary_coord(
(Utc.ymd(2010, 1, 1)..Utc.ymd(2018, 12, 1)).monthly(),
-10.0..40.0,
);
chart
.configure_mesh()
.disable_x_mesh()
.disable_y_mesh()
.x_labels(30)
.max_light_lines(4)
.y_desc("Average Temp (F)")
.draw()?;
chart
.configure_secondary_axes()
.y_desc("Average Temp (C)")
.draw()?;
chart.draw_series(LineSeries::new(
TIME_DATA.iter().map(|(y, m, t)| (Utc.ymd(*y, *m, 1), *t)),
&BLUE,
))?;
chart.draw_series(
TIME_DATA
.iter()
.map(|(y, m, t)| Circle::new((Utc.ymd(*y, *m, 1), *t), 3, BLUE.filled())),
)?;
// To avoid the IO failure being ignored silently, we manually call the present function
root.present().expect("Unable to write result to file, please make sure 'plotters-doc-data' dir exists under current dir");
println!("Result has been saved to {}", OUT_FILE_NAME);
Ok(())
}
const TIME_DATA: [(i32, u32, f64); 12 * 9] = [
(2010, 1, 32.4),
(2010, 2, 37.5),
(2010, 3, 44.5),
(2010, 4, 50.3),
(2010, 5, 55.0),
(2010, 6, 70.0),
(2010, 7, 78.7),
(2010, 8, 76.5),
(2010, 9, 68.9),
(2010, 10, 56.3),
(2010, 11, 40.3),
(2010, 12, 36.5),
(2011, 1, 28.8),
(2011, 2, 35.1),
(2011, 3, 45.5),
(2011, 4, 48.9),
(2011, 5, 55.1),
(2011, 6, 68.8),
(2011, 7, 77.9),
(2011, 8, 78.4),
(2011, 9, 68.2),
(2011, 10, 55.0),
(2011, 11, 41.5),
(2011, 12, 31.0),
(2012, 1, 35.6),
(2012, 2, 38.1),
(2012, 3, 49.1),
(2012, 4, 56.1),
(2012, 5, 63.4),
(2012, 6, 73.0),
(2012, 7, 79.0),
(2012, 8, 79.0),
(2012, 9, 68.8),
(2012, 10, 54.9),
(2012, 11, 45.2),
(2012, 12, 34.9),
(2013, 1, 19.7),
(2013, 2, 31.1),
(2013, 3, 46.2),
(2013, 4, 49.8),
(2013, 5, 61.3),
(2013, 6, 73.3),
(2013, 7, 80.3),
(2013, 8, 77.2),
(2013, 9, 68.3),
(2013, 10, 52.0),
(2013, 11, 43.2),
(2013, 12, 25.7),
(2014, 1, 31.5),
(2014, 2, 39.3),
(2014, 3, 46.4),
(2014, 4, 52.5),
(2014, 5, 63.0),
(2014, 6, 71.3),
(2014, 7, 81.0),
(2014, 8, 75.3),
(2014, 9, 70.0),
(2014, 10, 58.6),
(2014, 11, 42.1),
(2014, 12, 38.0),
(2015, 1, 35.3),
(2015, 2, 45.2),
(2015, 3, 50.9),
(2015, 4, 54.3),
(2015, 5, 60.5),
(2015, 6, 77.1),
(2015, 7, 76.2),
(2015, 8, 77.3),
(2015, 9, 70.4),
(2015, 10, 60.6),
(2015, 11, 40.9),
(2015, 12, 32.4),
(2016, 1, 31.5),
(2016, 2, 35.1),
(2016, 3, 49.1),
(2016, 4, 55.1),
(2016, 5, 60.9),
(2016, 6, 76.9),
(2016, 7, 80.0),
(2016, 8, 77.0),
(2016, 9, 67.1),
(2016, 10, 59.1),
(2016, 11, 47.4),
(2016, 12, 31.8),
(2017, 1, 29.4),
(2017, 2, 42.4),
(2017, 3, 51.7),
(2017, 4, 51.7),
(2017, 5, 62.5),
(2017, 6, 74.8),
(2017, 7, 81.3),
(2017, 8, 78.1),
(2017, 9, 65.7),
(2017, 10, 52.5),
(2017, 11, 49.0),
(2017, 12, 34.4),
(2018, 1, 38.1),
(2018, 2, 37.5),
(2018, 3, 45.4),
(2018, 4, 54.6),
(2018, 5, 64.0),
(2018, 6, 74.9),
(2018, 7, 82.5),
(2018, 8, 78.1),
(2018, 9, 71.9),
(2018, 10, 53.2),
(2018, 11, 39.7),
(2018, 12, 33.6),
];

View file

@ -0,0 +1,6 @@
[package]
name = "iter-prod"
version = "0.1.0"
edition = "2021"
[dependencies]

View file

@ -0,0 +1,58 @@
//! How to calc the factorial n! with just a single line, no imperative style loops, no vars.
//!
//! See [factorial] for how it's done and [myprod] for how it works under the hood.
/// Just so there is something to be ran :)
pub fn main() {
let x = 7;
println!("{}", factorial(x));
}
/// Return the factorial of `n` which is defined as `1 * 2 * 3 * … * n`.
/// <https://en.wikipedia.org/wiki/Factorial>
///
/// Task from rustlings
///
/// Do not use:
/// - early returns (using the `return` keyword explicitly)
///
/// Try not to use:
/// - imperative style loops (for/while)
/// - additional variables
///
/// For an extra challenge, don't use:
/// - recursion
pub fn factorial(n: u128) -> u128 {
(1..n + 1).product()
}
/// Does the same as [std::iter::Iterator::product] from the stdlib.
///
/// The code for [Iterator::product] can be hard to find because it is implemented with a trait and
/// then a macro. Here is a simple version of it.
#[allow(dead_code)]
pub fn myprod<T>(iter: T) -> u128
where
T: Iterator<Item = u128>,
{
#[allow(clippy::unnecessary_fold)] // clippy detects that this is just Iter::product
iter.fold(1, |acc, v| acc * v)
}
/// That's just my unit tests to confirm it works
#[cfg(test)]
pub mod tests {
use super::*;
#[test]
pub fn works() {
assert_eq!(factorial(7), 5040);
assert_eq!(factorial(9), 362880);
}
#[test]
pub fn myprod_same_as_real() {
assert_eq!((1..5).product::<u128>(), myprod(1..5));
assert_eq!((1..30).product::<u128>(), myprod(1..30));
// assert_eq!((1..50).product::<u128>(), myprod(1..50)); // u128 overflows here
}
}

View file

@ -11,5 +11,5 @@ libpt.workspace = true
rand = { version = "0.8.5", features = ["serde"] }
serde.workspace = true
serde_json.workspace = true
tokio.workspace = true
tokio = { version = "1.35.1", features = ["full"] }
warp = "0.3.6"

View file

@ -9,5 +9,5 @@ edition = "2021"
libpt.workspace = true
serde = { workspace = true, features = ["serde_derive"] }
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio = { version = "1.35.1", features = ["full"] }
warp = "0.3.6"

View file

@ -12,5 +12,7 @@ async fn main() {
debug!("spawning data_processing task: {store:#?}");
tokio::spawn(data_processing(store.clone()));
info!("starting webserver");
warp::serve(routes(store)).run(([127, 0, 0, 1], 3030)).await;
warp::serve(get_store(store))
.run(([127, 0, 0, 1], 3030))
.await;
}

View file

@ -18,7 +18,6 @@ pub fn get_store(store: Store) -> impl Filter<Extract = impl Reply, Error = Reje
warp::path!("api" / "v1" / "store")
.and(warp::get())
.and(with_store(store))
// .and(warp::body::content_length_limit(2 << 13))
.then(|store: Store| async move {
info!("GET /api/v1/store");
warp::reply::json(&store.get().await)

View file

@ -0,0 +1,6 @@
[package]
name = "sdl-idiot"
version = "0.1.0"
edition = "2024"
[dependencies]

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}

View file

@ -6,5 +6,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio.workspace = true
anyhow.workspace = true
tokio = { version = "1.35.1", features = [
"net",
"rt",
"macros",
"rt-multi-thread",
"io-util",
"time",
"sync",
] }

Some files were not shown because too many files have changed in this diff Show more