818405982d
* Initial commit of the new dashboard code. * Periodically grabbing topology json * Pulling file saving out into its own module * Ignoring downloaded topology file * Moved everything public into a public folder * Refreshing the mixmining report * Mounting static files from /public * Including mixminiming report grabber * Leaving the route in place to pick up later. It's not used right now. * Removing json download from git * Ignoring topology download * Moving recurrent jobs in to a jobs module * Adding websocket dependencies * Starting to get client/server websocket functionality running. * Fixing unused imports * Separating client and server functionality a bit more cleanly * WIP to sketch out the ws client and server a bit more * Initial metrics broadcaster * Import fixup * Spawning rocket in tokio task * Removed outdated comment * removed the js file Co-authored-by: Dave <futurechimp@users.noreply.github.com>
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/gateway-client",
|
|
"common/client-libs/metrics-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/network-requester",
|
|
]
|
|
|
|
default-members = [
|
|
"clients/native",
|
|
"clients/socks5",
|
|
# "clients/webassembly",
|
|
"gateway",
|
|
"service-providers/network-requester",
|
|
"mixnode",
|
|
"network-monitor",
|
|
]
|
|
|
|
exclude = ["explorer"] |