Fromat Cargo.toml files

This commit is contained in:
M220 2024-05-23 15:11:46 +03:30
parent 2747b3672a
commit 7422a46598
12 changed files with 88 additions and 108 deletions

View file

@ -1,9 +1,6 @@
[workspace]
members = [
"libraries/*",
"binaries/*"
]
members = ["libraries/*", "binaries/*"]
resolver = "2"
[profile.release]
@ -19,4 +16,4 @@ opt-level = 3
[profile.release-dbg]
inherits = "dev"
opt-level = 3
opt-level = 3

View file

@ -2,32 +2,32 @@
name = "geph5-bridge"
version = "0.1.0"
edition = "2021"
license="MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MPL-2.0"
[dependencies]
geph5-misc-rpc={path="../../libraries/geph5-misc-rpc"}
picomux={path="../../libraries/picomux"}
geph5-misc-rpc = { path = "../../libraries/geph5-misc-rpc" }
picomux = { path = "../../libraries/picomux" }
rand = "0.8.5"
sillad={path="../../libraries/sillad"}
sillad-sosistab3={path="../../libraries/sillad-sosistab3"}
sillad = { path = "../../libraries/sillad" }
sillad-sosistab3 = { path = "../../libraries/sillad-sosistab3" }
smolscale = "0.4.4"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
geph5-broker-protocol={path="../../libraries/geph5-broker-protocol"}
geph5-broker-protocol = { path = "../../libraries/geph5-broker-protocol" }
nanorpc = "0.1.12"
nanorpc-sillad={path="../../libraries/nanorpc-sillad"}
nanorpc-sillad = { path = "../../libraries/nanorpc-sillad" }
async-trait = "0.1.80"
blake3 = "1.5.1"
async-io = "2.3.2"
tap = "1.0.1"
reqwest = {version="0.12.4", default-features=false, features=["rustls-tls"]}
moka = {version="0.12.7", features=["future"]}
reqwest = { version = "0.12.4", default-features = false, features = [
"rustls-tls",
] }
moka = { version = "0.12.7", features = ["future"] }
anyhow = "1.0.82"
stdcode = "0.1.14"
smol = "2.0.0"
futures-util = {version="0.3.30", features=["io"]}
futures-util = { version = "0.3.30", features = ["io"] }
deadpool = "0.12.0"
once_cell = "1.19.0"
dashmap = "5.5.3"

View file

@ -4,26 +4,27 @@ version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
csv = "1.3.0"
dirs = "5.0.1"
eframe = {version="0.27.2", default-features=false, features=[ "wgpu", "x11"]}
eframe = { version = "0.27.2", default-features = false, features = [
"wgpu",
"x11",
] }
egui = "0.27.2"
moka = {version="0.12.7", features=["sync"]}
moka = { version = "0.12.7", features = ["sync"] }
native-dialog = "0.7.0"
serde={version="1", features=["derive"]}
serde = { version = "1", features = ["derive"] }
once_cell = "1.19.0"
smol_str = {version="0.2.1", features=["serde"]}
smol_str = { version = "0.2.1", features = ["serde"] }
tap = "1.0.1"
geph5-client={path="../geph5-client"}
geph5-client = { path = "../geph5-client" }
poll-promise = "0.3.0"
smolscale = "0.4.4"
futures-util = "0.3.30"
smol = "2.0.0"
geph5-broker-protocol={path="../../libraries/geph5-broker-protocol"}
geph5-broker-protocol = { path = "../../libraries/geph5-broker-protocol" }
serde_yaml = "0.9.34"
smol-timeout = "0.6.0"
tracing = "0.1.40"
@ -34,7 +35,7 @@ chrono = "0.4.38"
http = "1.1.0"
isocountry = "0.3.2"
itertools = "0.12.1"
image = {version="0.25.1", default-features=false, features=["ico"]}
image = { version = "0.25.1", default-features = false, features = ["ico"] }
[build-dependencies]
winresource = "0.1"
@ -43,4 +44,3 @@ winresource = "0.1"
[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
winapi = { version = "0.3.9", features = ["wininet"] }

View file

@ -2,26 +2,26 @@
name = "geph5-client"
version = "0.1.0"
edition = "2021"
license="MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MPL-2.0"
[dependencies]
anyctx = "0.1.0"
anyhow = "1.0.82"
isocountry = "0.3.2"
serde={version="1", features=["derive"]}
serde = { version = "1", features = ["derive"] }
smol = "2.0.0"
smol-timeout = "0.6.0"
smolscale = "0.4.4"
geph5-broker-protocol={path="../../libraries/geph5-broker-protocol"}
geph5-misc-rpc={path="../../libraries/geph5-misc-rpc"}
picomux={path="../../libraries/picomux"}
sillad={path="../../libraries/sillad"}
mizaru2={path="../../libraries/mizaru2"}
sillad-sosistab3={path="../../libraries/sillad-sosistab3"}
nanorpc-sillad={path="../../libraries/nanorpc-sillad"}
reqwest = {version="0.12.4", default-features=false, features=["rustls-tls"]}
geph5-broker-protocol = { path = "../../libraries/geph5-broker-protocol" }
geph5-misc-rpc = { path = "../../libraries/geph5-misc-rpc" }
picomux = { path = "../../libraries/picomux" }
sillad = { path = "../../libraries/sillad" }
mizaru2 = { path = "../../libraries/mizaru2" }
sillad-sosistab3 = { path = "../../libraries/sillad-sosistab3" }
nanorpc-sillad = { path = "../../libraries/nanorpc-sillad" }
reqwest = { version = "0.12.4", default-features = false, features = [
"rustls-tls",
] }
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-async-std"] }
async-trait = "0.1.80"
nanorpc = "0.1.12"
@ -47,8 +47,8 @@ event-listener = "5.3.0"
blind-rsa-signatures = "0.15.0"
tap = "1.0.1"
dirs = "5.0.1"
moka = {version="0.12.7", features=["future", "sync"]}
isahc = {version="1.7.2", features=["static-ssl"]}
moka = { version = "0.12.7", features = ["future", "sync"] }
isahc = { version = "1.7.2", features = ["static-ssl"] }
hyper = { version = "1.3.1", features = ["http1", "client", "server"] }
http = "1.1.0"
tokio = { version = "1.37.0", features = ["rt", "net", "io-util"] }
@ -57,7 +57,7 @@ pin-project = "1.1.5"
async-compat = "0.2.3"
once_cell = "1.19.0"
scopeguard = "1.2.0"
smol_str = {version="0.2.1", features=["serde"]}
smol_str = { version = "0.2.1", features = ["serde"] }
dashmap = "5.5.3"
atomic_float = "1.0.0"
hyper-util = { version = "0.1.3", features = ["http1", "client", "server"] }

View file

@ -2,15 +2,13 @@
name = "geph5-exit"
version = "0.1.0"
edition = "2021"
license="MPL-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "MPL-2.0"
[dependencies]
geph5-broker-protocol={path="../../libraries/geph5-broker-protocol"}
sillad={path="../../libraries/sillad"}
sillad-sosistab3={path="../../libraries/sillad-sosistab3"}
picomux={path="../../libraries/picomux"}
geph5-broker-protocol = { path = "../../libraries/geph5-broker-protocol" }
sillad = { path = "../../libraries/sillad" }
sillad-sosistab3 = { path = "../../libraries/sillad-sosistab3" }
picomux = { path = "../../libraries/picomux" }
async-trait = "0.1.80"
nanorpc = "0.1.12"
thiserror = "1.0.59"
@ -26,20 +24,22 @@ anyhow = "1.0.82"
tracing = "0.1.40"
smol = "2.0.0"
rand = "0.8.5"
reqwest = {version="0.12.4", default-features=false, features=["rustls-tls"]}
reqwest = { version = "0.12.4", default-features = false, features = [
"rustls-tls",
] }
isocountry = "0.3.2"
ed25519-dalek = "2.1.1"
blake3 = "1.5.1"
tracing-subscriber = "0.3.18"
tap = "1.0.1"
geph5-misc-rpc={path="../../libraries/geph5-misc-rpc"}
geph5-misc-rpc = { path = "../../libraries/geph5-misc-rpc" }
stdcode = "0.1.14"
x25519-dalek = "2.0.1"
hex = "0.4.3"
nursery_macro = "0.1.0"
moka = {version="0.12.7", features=["future"]}
moka = { version = "0.12.7", features = ["future"] }
tachyonix = "0.2.1"
mizaru2={path="../../libraries/mizaru2"}
mizaru2 = { path = "../../libraries/mizaru2" }
governor = "0.6.3"
quanta = "0.12.3"
sysinfo = "0.30.11"

View file

@ -3,21 +3,19 @@ name = "geph5-broker-protocol"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
async-trait = "0.1.80"
nanorpc = "0.1.12"
serde_json = "1.0.116"
thiserror = "1.0.59"
serde = {version="1.0.200", features=["derive"]}
bytes = {version="1.6.0", features=["serde"]}
ed25519-dalek = {version="2.1.1", features=["serde"]}
serde = { version = "1.0.200", features = ["derive"] }
bytes = { version = "1.6.0", features = ["serde"] }
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
stdcode = "0.1.14"
blake3 = {version="1.5.1", features=["serde"]}
blake3 = { version = "1.5.1", features = ["serde"] }
isocountry = "0.3.2"
language-tags = {version="0.3.2", features=["serde"]}
serde_with = {version="3.8.1", features=["hex"]}
mizaru2={path="../mizaru2"}
language-tags = { version = "0.3.2", features = ["serde"] }
serde_with = { version = "3.8.1", features = ["hex"] }
mizaru2 = { path = "../mizaru2" }
tracing = "0.1.40"

View file

@ -3,24 +3,21 @@ name = "geph5-misc-rpc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = {version="1.0.200", features=["derive"]}
serde = { version = "1.0.200", features = ["derive"] }
stdcode = "0.1.14"
futures-util = {version="0.3.30", features=["io"]}
futures-util = { version = "0.3.30", features = ["io"] }
async-trait = "0.1.80"
nanorpc = "0.1.12"
serde_json = "1.0.116"
thiserror = "1.0.59"
anyhow = "1.0.82"
bytes = {version="1.6.0", features=["serde"]}
ed25519-dalek = {version="2.1.1", features=["serde"]}
x25519-dalek = {version="2.0.1", features=["serde"]}
blake3 = {version="1.5.1", features=["serde"]}
sillad={path="../sillad"}
bytes = { version = "1.6.0", features = ["serde"] }
ed25519-dalek = { version = "2.1.1", features = ["serde"] }
x25519-dalek = { version = "2.0.1", features = ["serde"] }
blake3 = { version = "1.5.1", features = ["serde"] }
sillad = { path = "../sillad" }
chacha20poly1305 = "0.10.1"
smallvec = "1.13.2"
tachyonix = "0.2.1"
smolscale = "0.4.4"
@ -28,4 +25,4 @@ async-task = "4.7.1"
bipe = "0.2.2"
tap = "1.0.1"
pin-project = "1.1.5"
socksv5="0.3"
socksv5 = "0.3"

View file

@ -3,13 +3,11 @@ name = "mizaru2"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
blake3 = {version="1.5.1", features=["serde"]}
blake3 = { version = "1.5.1", features = ["serde"] }
blind-rsa-signatures = "0.15.0"
rand = "0.8.5"
stdcode = "0.1.14"
serde = {version="1.0.200", features=["derive", "rc"]}
serde = { version = "1.0.200", features = ["derive", "rc"] }
anyhow = "1.0.82"
rayon = "1.10.0"

View file

@ -3,14 +3,12 @@ name = "nanorpc-sillad"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sillad={path="../sillad"}
sillad = { path = "../sillad" }
async-trait = "0.1.80"
nanorpc = "0.1.12"
serde_json = "1.0.116"
thiserror = "1.0.59"
anyhow = "1.0.82"
futures-util = {version="0.3.30", features=["io"]}
futures-util = { version = "0.3.30", features = ["io"] }
async-executor = "1.11.0"

View file

@ -3,10 +3,8 @@ name = "picomux"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/geph-official/geph5"
license="ISC"
description="A protocol to multiplex multiple AsyncRead/Write streams over a single one, inspired by smux and http2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "ISC"
description = "A protocol to multiplex multiple AsyncRead/Write streams over a single one, inspired by smux and http2"
[dependencies]
ahash = "0.8.11"
@ -16,11 +14,11 @@ async-event = "0.1.0"
async-task = "4.7.1"
async_io_stream = "0.3.3"
bipe = "0.2.2"
bytemuck = {version="1.15.0", features=["derive", "min_const_generics"]}
bytemuck = { version = "1.15.0", features = ["derive", "min_const_generics"] }
bytes = "1.6.0"
dashmap = "5.5.3"
futures-lite = "2.3.0"
futures-util = {version="0.3.30", features=["io"]}
futures-util = { version = "0.3.30", features = ["io"] }
oneshot = "0.1.6"
parking_lot = "0.12.2"
rand = "0.8.5"
@ -31,21 +29,19 @@ smolscale = "0.4.4"
tachyonix = "0.2.1"
tracing = "0.1.40"
tracing-test = "0.2.4"
# async-rw-adapter={path="../async-rw-adapter"}
fastrand = "2.1.0"
tap = "1.0.1"
serde = {version="1.0.200", features=["derive"]}
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
async-io = "2.3.2"
sillad={version="0.1", path="../sillad"}
sillad = { version = "0.1", path = "../sillad" }
futures-intrusive = "0.5.0"
async-channel = "2.2.1"
pin-project = "1.1.5"
[dev-dependencies]
argh = "0.1"
smol="2"
socksv5="0.3"
sillad-sosistab3={path="../sillad-sosistab3"}
tracing-subscriber="0.3"
smol = "2"
socksv5 = "0.3"
sillad-sosistab3 = { path = "../sillad-sosistab3" }
tracing-subscriber = "0.3"

View file

@ -3,19 +3,17 @@ name = "sillad-sosistab3"
version = "0.1.2"
edition = "2021"
repository = "https://github.com/geph-official/geph5"
license="ISC"
description="A scramblesuit-like obfuscation protocol within the sillad framework"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "ISC"
description = "A scramblesuit-like obfuscation protocol within the sillad framework"
[dependencies]
arrayref = "0.3.7"
blake3 = "1.5.1"
chacha20poly1305 = "0.10.1"
rand = "0.8.5"
x25519-dalek = {version="2.0.1", features=["serde"]}
sillad={version="0.1", path="../sillad"}
futures-util = {version="0.3.30", features=["io"]}
x25519-dalek = { version = "2.0.1", features = ["serde"] }
sillad = { version = "0.1", path = "../sillad" }
futures-util = { version = "0.3.30", features = ["io"] }
pin-project = "1.1.5"
smallvec = "1.13.2"
async-trait = "0.1.80"
@ -25,7 +23,7 @@ tachyonix = "0.2.1"
smolscale = "0.4.4"
async-task = "4.7.1"
async-executor = "1.11.0"
serde = {version="1.0.200", features=["derive"]}
serde = { version = "1.0.200", features = ["derive"] }
hex = "0.4.3"
async-io = "2.3.2"
anyhow = "1.0.83"

View file

@ -3,16 +3,14 @@ name = "sillad"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/geph-official/geph5"
license="ISC"
description="A framework for talking about TCP-like dialers and listeners, within the futures-io ecosystem"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
license = "ISC"
description = "A framework for talking about TCP-like dialers and listeners, within the futures-io ecosystem"
[dependencies]
async-io = "2.3.2"
async-trait = "0.1.80"
futures-lite = "2.3.0"
futures-util = {version="0.3.30", features=["io"]}
futures-util = { version = "0.3.30", features = ["io"] }
libc = "0.2.154"
pin-project = "1.1.5"
smol-timeout = "0.6.0"