19 lines
571 B
TOML
19 lines
571 B
TOML
[package]
|
|
name = "web-ui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
iota-storage = { path = "../iota-storage" }
|
|
iota-state = { path = "../iota-state" }
|
|
iota-util = { path = "../iota-util" }
|
|
iota-logger = { path = "../iota-logger" }
|
|
iota-cli = { path = "../iota-cli" }
|
|
iota-ipc = { path = "../iota-ipc" }
|
|
iota-paths = { path = "../iota-paths" }
|
|
|
|
actix-web = { version = "4", features = ["rustls-0_23"] }
|
|
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
|
|
rustls-pemfile = "2.2.0"
|
|
serde_json = "1.0.149"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|