18 lines
529 B
TOML
18 lines
529 B
TOML
[package]
|
|
name = "iota-core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
autobins = false
|
|
|
|
[dependencies]
|
|
iota-cli = { path = "../iota-cli" }
|
|
iota-logger = { path = "../iota-logger" }
|
|
iota-state = { path = "../iota-state" }
|
|
iota-storage = { path = "../iota-storage" }
|
|
iota-terms = { path = "../iota-terms" }
|
|
iota-updater = { path = "../iota-updater" }
|
|
iota-util = { path = "../iota-util" }
|
|
iota-paths = { path = "../iota-paths" }
|
|
web-server = { path = "../web-server" }
|
|
pnet = "0.35.0"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|