12 lines
399 B
TOML
12 lines
399 B
TOML
cargo-features = ["per-package-target"]
|
|
[package]
|
|
name = "simulator"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.45", features = ["derive"] }
|
|
crossterm = "0.28.1"
|
|
device-state = { path = "../device-state" }
|
|
tokio = { version = "1.47.0", features = ["macros", "rt-multi-thread", "net", "sync", "time", "io-util", "signal"] }
|