initial commit
This commit is contained in:
commit
e75094d2a5
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/target
|
||||
/Cargo.lock
|
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "executor"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
internal_heartbeat = []
|
||||
|
||||
|
||||
[dependencies]
|
||||
|
||||
futures = "0.3"
|
||||
rayon = "1.10"
|
||||
parking_lot = "0.12.3"
|
||||
thread_local = "1.1.8"
|
||||
crossbeam = "0.8.4"
|
||||
|
||||
async-task = "4.7.1"
|
||||
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = {version ="0.3.18", features = ["env-filter"]}
|
||||
|
||||
anyhow = "1.0.89"
|
||||
thiserror = "2.0"
|
||||
bitflags = "2.6"
|
||||
# derive_more = "1.0.0"
|
1084
src/lib.rs
Normal file
1084
src/lib.rs
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue