gitextract_9z4bbede/ ├── .github/ │ └── workflows/ │ ├── binary-cache.yaml │ ├── ci.yaml │ └── update.yaml ├── .gitignore ├── LICENSE-MIT ├── README.md ├── build-rust-crate/ │ ├── builder-bin.sh │ ├── builder-build-script.sh │ ├── builder-common.sh │ ├── builder-lib.sh │ └── default.nix ├── cache/ │ ├── Cargo.toml │ ├── default.nix │ └── src/ │ └── lib.rs ├── crates-io-override/ │ ├── default.nix │ └── proc-macro.nix ├── flake.nix ├── lib/ │ ├── default.nix │ ├── glob.nix │ ├── pkg-info.nix │ ├── resolve.nix │ ├── semver.nix │ ├── support.nix │ └── target-cfg.nix ├── noc/ │ ├── Cargo.toml │ ├── src/ │ │ ├── init.rs │ │ └── main.rs │ └── templates/ │ └── init-flake.nix ├── scripts/ │ └── cratesio-utils.py ├── tests/ │ ├── build-deps/ │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src/ │ │ └── main.rs │ ├── build-feature-env-vars/ │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src/ │ │ └── main.rs │ ├── cap-lints/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── crate-names/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── custom-lib-name/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── lib.rs │ │ └── main.rs │ ├── default.nix │ ├── dependency-v1/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src/ │ │ └── main.rs │ ├── dependency-v2/ │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src/ │ │ └── main.rs │ ├── dependency-v3/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── fake-semver/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── features/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── libz-dynamic/ │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src/ │ │ └── main.rs │ ├── libz-static/ │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src/ │ │ ├── lib.rs │ │ └── main.rs │ ├── lto-fat/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── lto-proc-macro/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── lto-thin/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── tokio-app/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ ├── workspace-inline/ │ │ ├── Cargo.toml │ │ ├── bar/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ ├── baz/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ └── src/ │ │ └── main.rs │ ├── workspace-proc-macro-lto/ │ │ ├── Cargo.toml │ │ ├── procm/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── lib.rs │ │ └── src/ │ │ └── lib.rs │ └── workspace-virtual/ │ ├── Cargo.toml │ └── crates/ │ ├── bar/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── exc/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── main.rs │ └── foo/ │ ├── Cargo.toml │ └── src/ │ └── main.rs └── toml2json/ ├── Cargo.toml ├── README.md ├── default.nix └── src/ └── main.rs