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
Not working too well and difficult to track, but has a skeleton there to work from. Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
19 lines
377 B
TOML
19 lines
377 B
TOML
[package]
|
|
name = "ci-relay"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "ci-relay"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
swactor-ci = { path = "../ci", features = ["local"] }
|
|
iroh = "0.96"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
tiny_http = "0.12"
|
|
serde_json = "1"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
clap = { version = "4", features = ["derive"] }
|