-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 774 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "simprint-runtime"
version = "0.1.0"
edition = "2024"
publish = false
license = "AGPL-3.0-only"
default-run = "simprint-runtime"
[[bin]]
name = "simprint-runtime"
path = "src/main.rs"
[lib]
name = "simprint_runtime"
path = "src/lib.rs"
[dependencies]
async-trait = "0.1"
bytes = "1"
rand = "0.8"
rmp-serde = "1.3"
reqwest = { version = "0.12.22", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2.0.12"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-util", "io-std", "sync", "time", "net"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.61.1", features = [
"Win32_Foundation",
"Win32_Security",
"Win32_System_JobObjects",
"Win32_System_Threading",
] }