don't
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: use examples directory for crate examples

Signed-off-by: tjh <x@tjh.dev>

tjh c5a03557 1aad87bb

+5 -7
+1 -2
crates/gordian-identity/Cargo.toml
··· 23 23 tokio = { version = "1.47.1", default-features = false, features = ["macros"] } 24 24 tracing-subscriber = { version = "0.3.20", optional = true } 25 25 26 - [[bin]] 26 + [[example]] 27 27 name = "resolve" 28 - path = "src/bin/resolve.rs" 29 28 required-features = ["tracing-subscriber", "tokio/rt"]
crates/gordian-identity/src/bin/resolve.rs crates/gordian-identity/examples/resolve.rs
+2 -3
crates/gordian-jetstream/Cargo.toml
··· 32 32 [features] 33 33 default = ["zstd"] 34 34 35 - [[bin]] 36 - name = "jetstream" 37 - path = "src/main.rs" 35 + [[example]] 36 + name = "cli" 38 37 required-features = ["clap"]
crates/gordian-jetstream/src/main.rs crates/gordian-jetstream/examples/cli.rs
+2 -2
justfile
··· 22 22 incus exec {{host}} -- systemctl restart gordian-knot.service 23 23 24 24 resolve *ident: 25 - cargo run --package gordian-identity --bin resolve --features tracing-subscriber,tokio/rt -- {{ident}} 25 + cargo run --package gordian-identity --example resolve --features tracing-subscriber,tokio/rt -- {{ident}} 26 26 27 27 jetstream *args: 28 - cargo run --package gordian-jetstream --features clap -- {{args}} 28 + cargo run --package gordian-jetstream --example cli --features clap -- {{args}}