366335a015
* Replacing Rust validator sketch with Cosmos-based code. * Removing old build instructions * go fmt on generated code * Removing build files for github and pi * Starting transplant surgery * Directory now running in validator, sans metrics * Updating go sum * A partly-working directory startup integrated into the nymcli app. * Removing the Swagger docs header from nymcli, it can live in server.go * Working swagger docs. * Updating test title on Swagger docs * Directory server now integrated into validator (primitive but working) * Noted location of mixmining reports database. * Bumped golang version * Removing validator cargo files. * Moving directory API init method into the nymd module * Ditching a test which is causing tooling problems - presence will go away soon anyway * Removing the validator and merging develop
56 lines
1.3 KiB
TOML
56 lines
1.3 KiB
TOML
[profile.release]
|
|
panic = "abort"
|
|
opt-level = "s"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
"clients/native",
|
|
"clients/native/websocket-requests",
|
|
"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/mixnode-common",
|
|
"common/nonexhaustive-delayqueue",
|
|
"common/nymsphinx",
|
|
"common/nymsphinx/acknowledgements",
|
|
"common/nymsphinx/addressing",
|
|
"common/nymsphinx/anonymous-replies",
|
|
"common/nymsphinx/chunking",
|
|
"common/nymsphinx/cover",
|
|
"common/nymsphinx/forwarding",
|
|
"common/nymsphinx/framing",
|
|
"common/nymsphinx/params",
|
|
"common/nymsphinx/types",
|
|
"common/pemstore",
|
|
"common/socks5/requests",
|
|
"common/socks5/proxy-helpers",
|
|
"common/topology",
|
|
"common/wasm-utils",
|
|
"gateway",
|
|
"gateway/gateway-requests",
|
|
"mixnode",
|
|
"network-monitor",
|
|
"service-providers/sphinx-socks",
|
|
]
|
|
|
|
default-members = [
|
|
"clients/native",
|
|
"clients/socks5",
|
|
# "clients/webassembly",
|
|
"gateway",
|
|
"service-providers/sphinx-socks",
|
|
"mixnode",
|
|
"network-monitor",
|
|
]
|