19 lines
601 B
TOML
19 lines
601 B
TOML
[package]
|
|
name = "iota"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
iota-cli = { path = "../iota-cli" }
|
|
iota-ipc = { path = "../iota-ipc" }
|
|
iota-installer = { path = "../iota-installer" }
|
|
iota-core = { path = "../iota-core" }
|
|
iota-process-manager = { path = "../iota-process-manager" }
|
|
iota-paths = { path = "../iota-paths" }
|
|
iota-terms = { path = "../iota-terms" }
|
|
iota-util = { path = "../iota-util" }
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4.5", features = ["derive"] }
|