Fetch User Keys - simple tool for fetching SSH keys from various sources
2
fork

Configure Feed

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

fix: update cargoHash in Nix derivation

+9 -5
+4
cli/Cargo.toml
··· 7 7 version = "0.1.0" 8 8 edition = "2021" 9 9 10 + [profile.release] 11 + codegen-units = 1 12 + lto = "fat" 13 + 10 14 [dependencies] 11 15 clap = { version = "4.4.18", features = ["derive"] } 12 16 rayon = "1.10.0"
+4 -4
docs/fuk.1.scd
··· 7 7 # SYNOPSIS 8 8 9 9 *fuk* -h++ 10 - *fuk* [--format (json|pretty)] _config.toml_ 10 + *fuk* [--format (json|json-pretty|toml|toml-pretty)] _config.toml_ 11 11 12 12 # DESCRIPTION 13 13 ··· 35 35 Hostnames that will be passed to _ssh-keyscan_(1). 36 36 37 37 *http* 38 - Takes `url` as and argument, with URL pointing to the HTTP resource that 38 + Takes _url_ as and argument, with URL pointing to the HTTP resource that 39 39 will contain SSH keys. 40 40 41 41 *github*, *gitlab*, *sourcehut*, *codeberg* ··· 46 46 *tangled* 47 47 Support for _tangled.sh_ keys stored in the ATProto profile. Accepts 48 48 either string, which should be either DID or handle (with or without 49 - preceding `@` sign), or a structure with `handle` key and optional 50 - `host` key. Default host is _https://bsky.social_. 49 + preceding _@_ sign), or a structure with `handle` key and optional 50 + _host_ key. Default host is _https://bsky.social_. 51 51 52 52 Example configuration: 53 53
+1 -1
nix/fuk.nix
··· 17 17 18 18 src = ./..; 19 19 20 - cargoHash = "sha256-jdiaV4B22GHKrHpuPv+eKsAt2jMv5AazLJmoEYfdUlE="; 20 + cargoHash = "sha256-xPWs7QtyvLodtYSaTshR/Zyiq1L1d1KzvKXt1K76exs="; 21 21 22 22 nativeBuildInputs = [scdoc pkg-config]; 23 23