[Fix] Split
This commit is contained in:
parent
3274471695
commit
e5360088eb
21 changed files with 197 additions and 18 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
[package]
|
[package]
|
||||||
name = "decentralized"
|
name = "communities"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
|
|
||||||
|
|
@ -10,6 +10,7 @@ iota-logger = { path = "../iota-logger" }
|
||||||
iota-util = { path = "../iota-util" }
|
iota-util = { path = "../iota-util" }
|
||||||
iota-storage = { path = "../iota-storage" }
|
iota-storage = { path = "../iota-storage" }
|
||||||
iota-state = { path = "../iota-state" }
|
iota-state = { path = "../iota-state" }
|
||||||
|
iota-auth = { path = "../iota-auth" }
|
||||||
|
|
||||||
actix-web = { version = "4", features = ["rustls-0_23"] }
|
actix-web = { version = "4", features = ["rustls-0_23"] }
|
||||||
actix-web-actors = "4"
|
actix-web-actors = "4"
|
||||||
1
client/src/lib.rs
Normal file
1
client/src/lib.rs
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
61
communities/Cargo.toml
Normal file
61
communities/Cargo.toml
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
[package]
|
||||||
|
name = "communities"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
ttp-core = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-core" }
|
||||||
|
ttp-native = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-native" }
|
||||||
|
iota-logger = { path = "../iota-logger" }
|
||||||
|
iota-util = { path = "../iota-util" }
|
||||||
|
iota-storage = { path = "../iota-storage" }
|
||||||
|
iota-state = { path = "../iota-state" }
|
||||||
|
iota-auth = { path = "../iota-auth" }
|
||||||
|
|
||||||
|
actix-web = { version = "4", features = ["rustls-0_23"] }
|
||||||
|
actix-web-actors = "4"
|
||||||
|
aes-gcm = "0.10.3"
|
||||||
|
async-trait = "0.1.89"
|
||||||
|
base64 = "0.22.1"
|
||||||
|
chrono = "0.4.43"
|
||||||
|
crossterm = "*"
|
||||||
|
dashmap = "6.1.0"
|
||||||
|
futures = "*"
|
||||||
|
futures-util = "*"
|
||||||
|
hex = "*"
|
||||||
|
hkdf = "0.12.4"
|
||||||
|
hyper = { version = "1.8.1", features = [
|
||||||
|
"capi",
|
||||||
|
"client",
|
||||||
|
"full",
|
||||||
|
"http1",
|
||||||
|
"http2",
|
||||||
|
"nightly",
|
||||||
|
"server",
|
||||||
|
] }
|
||||||
|
hyper-util = { version = "*" }
|
||||||
|
json = "*"
|
||||||
|
lazy_static = "1.5.0"
|
||||||
|
once_cell = "1.21.3"
|
||||||
|
open = "5.3.3"
|
||||||
|
pnet = "0.35.0"
|
||||||
|
rand = "0.8"
|
||||||
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||||
|
ratatui = "0.30.0"
|
||||||
|
reqwest = "0.13.2"
|
||||||
|
rusqlite = "0.39.0"
|
||||||
|
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
|
||||||
|
rustls-pemfile = "2.2.0"
|
||||||
|
serde_json = "1.0.149"
|
||||||
|
sha2 = "0.10.9"
|
||||||
|
strum = "0.27.2"
|
||||||
|
strum_macros = "0.27.2"
|
||||||
|
sysinfo = "0.38.3"
|
||||||
|
tokio = { version = "1.50.0", features = ["full"] }
|
||||||
|
tokio-tungstenite = { version = "*", features = ["native-tls"] }
|
||||||
|
tungstenite = "*"
|
||||||
|
uuid = { version = "*", features = ["v4"] }
|
||||||
|
walkdir = "2.5.0"
|
||||||
|
warp = "*"
|
||||||
|
x448 = { version = "*" }
|
||||||
|
zip = "6.0.0"
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
pub mod communities;
|
|
||||||
pub mod local_auth;
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
pub mod auth_user;
|
|
||||||
pub mod local_auth;
|
|
||||||
58
iota-auth/Cargo.toml
Normal file
58
iota-auth/Cargo.toml
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
[package]
|
||||||
|
name = "iota-auth"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
ttp-core = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-core" }
|
||||||
|
ttp-native = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-native" }
|
||||||
|
iota-logger = { path = "../iota-logger" }
|
||||||
|
iota-util = { path = "../iota-util" }
|
||||||
|
iota-storage = { path = "../iota-storage" }
|
||||||
|
iota-state = { path = "../iota-state" }
|
||||||
|
|
||||||
|
aes-gcm = "0.10.3"
|
||||||
|
async-trait = "0.1.89"
|
||||||
|
base64 = "0.22.1"
|
||||||
|
chrono = "0.4.43"
|
||||||
|
crossterm = "*"
|
||||||
|
dashmap = "6.1.0"
|
||||||
|
futures = "*"
|
||||||
|
futures-util = "*"
|
||||||
|
hex = "*"
|
||||||
|
hkdf = "0.12.4"
|
||||||
|
hyper = { version = "1.8.1", features = [
|
||||||
|
"capi",
|
||||||
|
"client",
|
||||||
|
"full",
|
||||||
|
"http1",
|
||||||
|
"http2",
|
||||||
|
"nightly",
|
||||||
|
"server",
|
||||||
|
] }
|
||||||
|
hyper-util = { version = "*" }
|
||||||
|
json = "*"
|
||||||
|
lazy_static = "1.5.0"
|
||||||
|
once_cell = "1.21.3"
|
||||||
|
open = "5.3.3"
|
||||||
|
pnet = "0.35.0"
|
||||||
|
rand = "0.8"
|
||||||
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||||
|
ratatui = "0.30.0"
|
||||||
|
reqwest = "0.13.2"
|
||||||
|
rusqlite = "0.39.0"
|
||||||
|
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
|
||||||
|
rustls-pemfile = "2.2.0"
|
||||||
|
serde_json = "1.0.149"
|
||||||
|
sha2 = "0.10.9"
|
||||||
|
strum = "0.27.2"
|
||||||
|
strum_macros = "0.27.2"
|
||||||
|
sysinfo = "0.38.3"
|
||||||
|
tokio = { version = "1.50.0", features = ["full"] }
|
||||||
|
tokio-tungstenite = { version = "*", features = ["native-tls"] }
|
||||||
|
tungstenite = "*"
|
||||||
|
uuid = { version = "*", features = ["v4"] }
|
||||||
|
walkdir = "2.5.0"
|
||||||
|
warp = "*"
|
||||||
|
x448 = { version = "*" }
|
||||||
|
zip = "6.0.0"
|
||||||
0
iota-auth/src/lib.rs
Normal file
0
iota-auth/src/lib.rs
Normal file
61
other_iota/Cargo.toml
Normal file
61
other_iota/Cargo.toml
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
[package]
|
||||||
|
name = "communities"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
ttp-core = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-core" }
|
||||||
|
ttp-native = { git = "https://git.methanium.net/Tensamin/TTP.git", package = "ttp-native" }
|
||||||
|
iota-logger = { path = "../iota-logger" }
|
||||||
|
iota-util = { path = "../iota-util" }
|
||||||
|
iota-storage = { path = "../iota-storage" }
|
||||||
|
iota-state = { path = "../iota-state" }
|
||||||
|
iota-auth = { path = "../iota-auth" }
|
||||||
|
|
||||||
|
actix-web = { version = "4", features = ["rustls-0_23"] }
|
||||||
|
actix-web-actors = "4"
|
||||||
|
aes-gcm = "0.10.3"
|
||||||
|
async-trait = "0.1.89"
|
||||||
|
base64 = "0.22.1"
|
||||||
|
chrono = "0.4.43"
|
||||||
|
crossterm = "*"
|
||||||
|
dashmap = "6.1.0"
|
||||||
|
futures = "*"
|
||||||
|
futures-util = "*"
|
||||||
|
hex = "*"
|
||||||
|
hkdf = "0.12.4"
|
||||||
|
hyper = { version = "1.8.1", features = [
|
||||||
|
"capi",
|
||||||
|
"client",
|
||||||
|
"full",
|
||||||
|
"http1",
|
||||||
|
"http2",
|
||||||
|
"nightly",
|
||||||
|
"server",
|
||||||
|
] }
|
||||||
|
hyper-util = { version = "*" }
|
||||||
|
json = "*"
|
||||||
|
lazy_static = "1.5.0"
|
||||||
|
once_cell = "1.21.3"
|
||||||
|
open = "5.3.3"
|
||||||
|
pnet = "0.35.0"
|
||||||
|
rand = "0.8"
|
||||||
|
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||||
|
ratatui = "0.30.0"
|
||||||
|
reqwest = "0.13.2"
|
||||||
|
rusqlite = "0.39.0"
|
||||||
|
rustls = { version = "0.23.37", features = ["aws-lc-rs"] }
|
||||||
|
rustls-pemfile = "2.2.0"
|
||||||
|
serde_json = "1.0.149"
|
||||||
|
sha2 = "0.10.9"
|
||||||
|
strum = "0.27.2"
|
||||||
|
strum_macros = "0.27.2"
|
||||||
|
sysinfo = "0.38.3"
|
||||||
|
tokio = { version = "1.50.0", features = ["full"] }
|
||||||
|
tokio-tungstenite = { version = "*", features = ["native-tls"] }
|
||||||
|
tungstenite = "*"
|
||||||
|
uuid = { version = "*", features = ["v4"] }
|
||||||
|
walkdir = "2.5.0"
|
||||||
|
warp = "*"
|
||||||
|
x448 = { version = "*" }
|
||||||
|
zip = "6.0.0"
|
||||||
1
other_iota/src/lib.rs
Normal file
1
other_iota/src/lib.rs
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
Loading…
Reference in a new issue