31 lines
799 B
TOML
31 lines
799 B
TOML
[package]
|
|
name = "omikron-connector"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.89"
|
|
iota-connection = { path = "../iota-connection" }
|
|
iota-logger = { path = "../iota-logger" }
|
|
iota-state = { path = "../iota-state" }
|
|
iota-storage = { path = "../iota-storage" }
|
|
iota-util = { path = "../iota-util" }
|
|
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", features = [
|
|
"client",
|
|
"crypto",
|
|
"files",
|
|
"raw",
|
|
] }
|
|
|
|
dashmap = "6.2.1"
|
|
json = "*"
|
|
reqwest = "0.13.2"
|
|
tokio = { version = "1.50.0", features = ["full"] }
|
|
tokio-util = { version = "0.7", features = ["rt"] }
|
|
uuid = { version = "*", features = ["v4"] }
|
|
base64 = "0.22.1"
|
|
hex = "*"
|
|
rand = "0.8"
|
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
|
sha2 = "0.11.0"
|
|
x448 = { version = "*" }
|