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

View file

@ -4,8 +4,12 @@ version = "0.1.0"
edition = "2024" edition = "2024"
[dependencies] [dependencies]
iota-logger = { path = "../iota-logger" }
iota-state = { path = "../iota-state" } 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" } ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }

View file

@ -4,7 +4,16 @@ version = "0.1.0"
edition = "2024" edition = "2024"
[dependencies] [dependencies]
iota-cli = { path = "../iota-cli" }
iota-logger = { path = "../iota-logger" }
iota-state = { path = "../iota-state" } 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-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }
ttp-native = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-native" } 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] [package]
name = "iota" name = "web-server"
version = "0.1.0" version = "0.1.0"
edition = "2024" edition = "2024"