This commit is contained in:
Alex Emmet 2026-04-04 22:22:46 +02:00
commit 05763e7dd3
9 changed files with 73 additions and 11 deletions

52
Cargo.lock generated
View file

@ -1767,14 +1767,6 @@ dependencies = [
"syn 2.0.117",
]
[[package]]
name = "iota"
version = "0.1.0"
dependencies = [
"ttp-core",
"ttp-native",
]
[[package]]
name = "iota-cli"
version = "0.1.0"
@ -1793,10 +1785,14 @@ dependencies = [
"hkdf",
"hyper",
"hyper-util",
"iota-core",
"iota-logger",
"iota-state",
"iota-storage",
"iota-terms",
"iota-util",
"json",
"lazy_static",
"omikron-connector",
"once_cell",
"open",
"pnet",
@ -1829,8 +1825,14 @@ name = "iota-core"
version = "0.1.0"
dependencies = [
"dashmap",
"iota-cli",
"iota-logger",
"iota-state",
"iota-storage",
"iota-terms",
"iota-util",
"json",
"omikron-connector",
"once_cell",
"pnet",
"ratatui",
@ -1838,6 +1840,8 @@ dependencies = [
"tokio",
"ttp-core",
"ttp-native",
"web-server",
"web-ui",
]
[[package]]
@ -1882,6 +1886,28 @@ dependencies = [
"zip",
]
[[package]]
name = "iota-terms"
version = "0.1.0"
dependencies = [
"iota-state",
"json",
"reqwest",
]
[[package]]
name = "iota-util"
version = "0.1.0"
dependencies = [
"json",
"pnet",
"ratatui",
"reqwest",
"tokio",
"ttp-core",
"ttp-native",
]
[[package]]
name = "ipnet"
version = "2.12.0"
@ -4331,6 +4357,14 @@ dependencies = [
"semver",
]
[[package]]
name = "web-server"
version = "0.1.0"
dependencies = [
"ttp-core",
"ttp-native",
]
[[package]]
name = "web-sys"
version = "0.3.94"

View file

@ -4,8 +4,12 @@ version = "0.1.0"
edition = "2024"
[dependencies]
iota-logger = { path = "../iota-logger" }
iota-state = { path = "../iota-state" }
iota-core = { path = "../iota-terms" }
iota-storage = { path = "../iota-storage" }
iota-terms = { path = "../iota-terms" }
iota-util = { path = "../iota-util" }
omikron-connector = { path = "../omikron-connector" }
ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }

View file

@ -4,7 +4,16 @@ version = "0.1.0"
edition = "2024"
[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-util = { path = "../iota-util" }
omikron-connector = { path = "../omikron-connector" }
web-server = { path = "../web-server" }
web-ui = { path = "../web-ui" }
ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }
ttp-native = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-native" }

15
iota-util/Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[package]
name = "iota-util"
version = "0.1.0"
edition = "2024"
[dependencies]
ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }
ttp-native = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-native" }
json = "*"
pnet = "0.35.0"
ratatui = "0.30.0"
reqwest = "0.13.2"
tokio = { version = "1.50.0", features = ["full"] }

0
iota-util/src/lib.rs Normal file
View file

View file

@ -1,6 +1,6 @@
[package]
name = "iota"
name = "web-server"
version = "0.1.0"
edition = "2024"