├── .config ├── cliff.toml ├── hakari.toml ├── rust-toolchain.toml └── treefmt.nix ├── .envrc ├── .forgejo ├── CODEOWNERS └── workflows │ ├── conventional-commits.yml │ ├── nix-build.yml │ └── nix-flake-check.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .rustfmt.toml ├── .versionrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── LICENSES ├── CC-BY-4.0.txt └── EUPL-1.2.txt ├── README.md ├── REUSE.toml ├── crates ├── common │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── nix-weather │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── cli.rs │ │ ├── main.rs │ │ ├── net.rs │ │ └── nix.rs └── workspace-hack │ ├── .gitattributes │ ├── Cargo.toml │ ├── build.rs │ └── src │ └── lib.rs ├── deny.toml ├── flake.lock ├── flake.nix └── justfile /.config/cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.config/cliff.toml -------------------------------------------------------------------------------- /.config/hakari.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.config/hakari.toml -------------------------------------------------------------------------------- /.config/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.config/rust-toolchain.toml -------------------------------------------------------------------------------- /.config/treefmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.config/treefmt.nix -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | if has nix; then 2 | use flake . 3 | fi 4 | -------------------------------------------------------------------------------- /.forgejo/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.forgejo/CODEOWNERS -------------------------------------------------------------------------------- /.forgejo/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.forgejo/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.forgejo/workflows/nix-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.forgejo/workflows/nix-build.yml -------------------------------------------------------------------------------- /.forgejo/workflows/nix-flake-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.forgejo/workflows/nix-flake-check.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/.versionrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/EUPL-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/LICENSES/EUPL-1.2.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/REUSE.toml -------------------------------------------------------------------------------- /crates/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/common/Cargo.toml -------------------------------------------------------------------------------- /crates/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/common/src/lib.rs -------------------------------------------------------------------------------- /crates/nix-weather/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/Cargo.toml -------------------------------------------------------------------------------- /crates/nix-weather/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/build.rs -------------------------------------------------------------------------------- /crates/nix-weather/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/src/cli.rs -------------------------------------------------------------------------------- /crates/nix-weather/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/src/main.rs -------------------------------------------------------------------------------- /crates/nix-weather/src/net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/src/net.rs -------------------------------------------------------------------------------- /crates/nix-weather/src/nix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/nix-weather/src/nix.rs -------------------------------------------------------------------------------- /crates/workspace-hack/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/workspace-hack/.gitattributes -------------------------------------------------------------------------------- /crates/workspace-hack/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/workspace-hack/Cargo.toml -------------------------------------------------------------------------------- /crates/workspace-hack/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/workspace-hack/build.rs -------------------------------------------------------------------------------- /crates/workspace-hack/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/crates/workspace-hack/src/lib.rs -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/deny.toml -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cafkafk/nix-weather/HEAD/justfile --------------------------------------------------------------------------------