18 lines
499 B
TOML
18 lines
499 B
TOML
[package]
|
|
name = "spin_process"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <you@example.com>"]
|
|
description = "Simulates a process launcher similar to a Bash script"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tokio = { version = "1.45.1", features = ["rt", "rt-multi-thread", "macros", "time"] }
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
async-std = "1.13.1"
|
|
|
|
[[bin]]
|
|
name = "spin_process"
|
|
path = "src/SpinProcess.rs" |