36 lines
1.2 KiB
TOML
36 lines
1.2 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/whalescale-agent",
|
|
"crates/whalescale-session",
|
|
"crates/whalescale-transport",
|
|
"crates/whalescale-path",
|
|
"crates/whalescale-multipath",
|
|
"crates/whalescale-gossip",
|
|
"crates/whalescale-nat",
|
|
"crates/whalescale-anchor",
|
|
"crates/whalescale-tun",
|
|
"crates/whalescale-bootstrap",
|
|
"crates/whalescale-crypto",
|
|
"crates/whalescale-types",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "Proprietary"
|
|
|
|
[workspace.dependencies]
|
|
whalescale-agent = { path = "crates/whalescale-agent" }
|
|
whalescale-session = { path = "crates/whalescale-session" }
|
|
whalescale-transport = { path = "crates/whalescale-transport" }
|
|
whalescale-path = { path = "crates/whalescale-path" }
|
|
whalescale-multipath = { path = "crates/whalescale-multipath" }
|
|
whalescale-gossip = { path = "crates/whalescale-gossip" }
|
|
whalescale-nat = { path = "crates/whalescale-nat" }
|
|
whalescale-anchor = { path = "crates/whalescale-anchor" }
|
|
whalescale-tun = { path = "crates/whalescale-tun" }
|
|
whalescale-bootstrap = { path = "crates/whalescale-bootstrap" }
|
|
whalescale-crypto = { path = "crates/whalescale-crypto" }
|
|
whalescale-types = { path = "crates/whalescale-types" }
|