don't
5
fork

Configure Feed

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

style: rename crate 'credential-helper' => 'gordian-cred'

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

tjh 3672ba0a de193e79

+29 -32
+26 -26
Cargo.lock
··· 555 555 ] 556 556 557 557 [[package]] 558 - name = "credential-helper" 559 - version = "0.0.0" 560 - dependencies = [ 561 - "anyhow", 562 - "axum", 563 - "clap", 564 - "data-encoding", 565 - "directories", 566 - "gordian-auth", 567 - "gordian-identity", 568 - "gordian-types", 569 - "owo-colors", 570 - "rand 0.9.2", 571 - "reqwest", 572 - "serde", 573 - "serde_json", 574 - "ssh-agent-client-rs", 575 - "ssh-key", 576 - "time", 577 - "tokio", 578 - "toml", 579 - "tracing", 580 - "tracing-subscriber", 581 - ] 582 - 583 - [[package]] 584 558 name = "critical-section" 585 559 version = "1.2.0" 586 560 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2041 2067 "serde_json", 2042 2068 "thiserror 2.0.18", 2043 2069 "url", 2070 + ] 2071 + 2072 + [[package]] 2073 + name = "gordian-cred" 2074 + version = "0.0.0" 2075 + dependencies = [ 2076 + "anyhow", 2077 + "axum", 2078 + "clap", 2079 + "data-encoding", 2080 + "directories", 2081 + "gordian-auth", 2082 + "gordian-identity", 2083 + "gordian-types", 2084 + "owo-colors", 2085 + "rand 0.9.2", 2086 + "reqwest", 2087 + "serde", 2088 + "serde_json", 2089 + "ssh-agent-client-rs", 2090 + "ssh-key", 2091 + "time", 2092 + "tokio", 2093 + "toml", 2094 + "tracing", 2095 + "tracing-subscriber", 2044 2096 ] 2045 2097 2046 2098 [[package]]
+1 -1
Cargo.toml
··· 8 8 "crates/gordian-lexicon", 9 9 "crates/gordian-pds", 10 10 "crates/gordian-types", 11 - "crates/credential-helper", 11 + "crates/gordian-cred", 12 12 ] 13 13 default-members = ["crates/gordian-knot"] 14 14
+2 -5
crates/credential-helper/Cargo.toml crates/gordian-cred/Cargo.toml
··· 1 1 [package] 2 - name = "credential-helper" 2 + name = "gordian-cred" 3 + description = "Git credential helper for use with gordian-knot" 3 4 version.workspace = true 4 5 authors.workspace = true 5 6 repository.workspace = true ··· 31 30 tokio = { version = "1.48.0", features = ["rt"] } 32 31 toml = "0.9.8" 33 32 tracing-subscriber = { version = "0.3.20", features = ["env-filter"] } 34 - 35 - [[bin]] 36 - name = "tngl" 37 - path = "src/main.rs"
crates/credential-helper/src/commands.rs crates/gordian-cred/src/commands.rs
crates/credential-helper/src/commands/auth.rs crates/gordian-cred/src/commands/auth.rs
crates/credential-helper/src/commands/git_credential.rs crates/gordian-cred/src/commands/git_credential.rs
crates/credential-helper/src/commands/git_setup.rs crates/gordian-cred/src/commands/git_setup.rs
crates/credential-helper/src/config.rs crates/gordian-cred/src/config.rs
crates/credential-helper/src/main.rs crates/gordian-cred/src/main.rs