bdfe91676c
* Adding a client-core crate. * Moved config into client_core * Socks5 client now depends on client-core/config * Native client now mostly using client-core internals * Socks client now uses client-core internals.
36 lines
897 B
TOML
36 lines
897 B
TOML
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"clients/native",
|
|
"clients/socks5",
|
|
"clients/webassembly",
|
|
"clients/client-core",
|
|
"common/client-libs/directory-client",
|
|
"common/client-libs/directory-client/models",
|
|
"common/client-libs/gateway-client",
|
|
"common/client-libs/mixnet-client",
|
|
"common/client-libs/validator-client",
|
|
"common/config",
|
|
"common/crypto",
|
|
"common/nymsphinx",
|
|
"common/nymsphinx/acknowledgements",
|
|
"common/nymsphinx/addressing",
|
|
"common/nymsphinx/anonymous-replies",
|
|
"common/nymsphinx/chunking",
|
|
"common/nymsphinx/cover",
|
|
"common/nymsphinx/framing",
|
|
"common/nymsphinx/params",
|
|
"common/nymsphinx/types",
|
|
"common/pemstore",
|
|
"common/topology",
|
|
"gateway",
|
|
"gateway/gateway-requests",
|
|
"service-providers/simple-socks5",
|
|
"mixnode",
|
|
"validator",
|
|
]
|