22 lines
678 B
TOML
22 lines
678 B
TOML
[package]
|
|
name = "omikron-connector"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
iota-logger = { path = "../iota-logger" }
|
|
iota-state = { path = "../iota-state" }
|
|
iota-storage = { path = "../iota-storage" }
|
|
iota-util = { path = "../iota-util" }
|
|
ttp-core = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-core" }
|
|
ttp-native = { git = "https://github.com/Tensamin/TTP.git", package = "ttp-native" }
|
|
|
|
dashmap = "6.1.0"
|
|
json = "*"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
uuid = { version = "*", features = ["v4"] }
|
|
base64 = "0.22.1"
|
|
hex = "*"
|
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
|
sha2 = "0.10.9"
|
|
x448 = { version = "*" }
|