Some checks failed
ci/check Job 'check' failed: command exited with code 101
[stderr] | |_^
[stderr] |
[stderr] = note: the lang item is first defined in crate `std` (which `ed25519_dalek` depends on)
[stderr] = note: first definition in `std` loaded from /home/z...
ci/clippy Job 'clippy' failed: command exited with code 101
[stderr] help: try adding this
[stderr] |
[stderr] 157 + impl Default for TransportRouter {
[stderr] 158 + fn default() -> Self {
[stderr] 159 + Self::new()
[stderr] 160 + }
[st...
ci/ci Pipeline 'ci' failure
Very barebones, untrustworthy, barely reviewed auth layer. LGTM. Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
name = "swactor-datastore"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
swactor = { path = "../..", features = ["serde", "transport"] }
|
|
distribution = { path = "../distribution" }
|
|
shared-types = { path = "../shared-types" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
blake3 = "1"
|
|
tiny_http = { version = "0.12", optional = true }
|
|
clap = { version = "4", features = ["derive"], optional = true }
|
|
ureq = { version = "2", features = ["json"], optional = true }
|
|
getrandom = { version = "0.2", optional = true }
|
|
ctrlc = { version = "3", optional = true }
|
|
runtime-dashboard = { path = "../runtime-dashboard", optional = true }
|
|
toml = { version = "0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
proptest = "1"
|
|
tempfile = "3"
|
|
swactor = { path = "../.." }
|
|
swactor-std = { path = "../std" }
|
|
ureq = { version = "2", features = ["json"] }
|
|
tiny_http = "0.12"
|
|
runtime-dashboard = { path = "../runtime-dashboard" }
|
|
|
|
[features]
|
|
node = ["dep:tiny_http", "dep:clap", "dep:ctrlc", "dep:runtime-dashboard", "dep:toml"]
|
|
cli = ["dep:clap", "dep:ureq", "dep:getrandom"]
|
|
|
|
[[bin]]
|
|
name = "swactor-store-node"
|
|
path = "src/bin/store_node.rs"
|
|
required-features = ["node"]
|
|
|
|
[[bin]]
|
|
name = "swactor-store"
|
|
path = "src/bin/store_cli.rs"
|
|
required-features = ["cli"]
|