dont have fucking tokio as default dep
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
This commit is contained in:
parent
8339ba2989
commit
16b75c64f9
7 changed files with 32 additions and 15 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -33,6 +33,7 @@ members = [
|
|||
"members/iter-prod",
|
||||
"members/tpdemo",
|
||||
"members/graph",
|
||||
"members/sdl-idiot",
|
||||
]
|
||||
default-members = [
|
||||
".",
|
||||
|
@ -65,21 +66,12 @@ default-members = [
|
|||
"members/rest-queued",
|
||||
"members/sqlite-demo",
|
||||
"members/graph",
|
||||
"members/sdl-idiot",
|
||||
]
|
||||
|
||||
[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"] }
|
||||
|
|
|
@ -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,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"
|
||||
|
|
|
@ -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"
|
||||
|
|
6
members/sdl-idiot/Cargo.toml
Normal file
6
members/sdl-idiot/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "sdl-idiot"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
3
members/sdl-idiot/src/main.rs
Normal file
3
members/sdl-idiot/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
|
@ -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",
|
||||
] }
|
||||
|
|
Loading…
Add table
Reference in a new issue