├── .github └── workflows │ ├── binary-cache.yaml │ ├── ci.yaml │ └── update.yaml ├── .gitignore ├── LICENSE-MIT ├── README.md ├── cache ├── Cargo.lock ├── Cargo.toml ├── default.nix └── src │ └── lib.rs ├── crates-io-override ├── default.nix └── proc-macro.nix ├── flake.lock ├── flake.nix ├── lib ├── default.nix ├── glob.nix ├── pkg-info.nix ├── resolve.nix ├── semver.nix ├── support.nix └── target-cfg.nix ├── noc ├── Cargo.lock ├── Cargo.toml ├── src │ ├── init.rs │ └── main.rs └── templates │ └── init-flake.nix ├── scripts └── cratesio-utils.py ├── tests ├── build-deps │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs ├── build-feature-env-vars │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs ├── cap-lints │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── crate-names │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── custom-lib-name │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── default.nix ├── dependency-v1 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── dependency-v2 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── dependency-v3 │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── fake-semver │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── features │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── libz-dynamic │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs ├── libz-static │ ├── Cargo.lock │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── lto-fat │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── lto-proc-macro │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── lto-thin │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── tokio-app │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── workspace-inline │ ├── Cargo.lock │ ├── Cargo.toml │ ├── bar │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── baz │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── src │ │ └── main.rs ├── workspace-proc-macro-lto │ ├── Cargo.lock │ ├── Cargo.toml │ ├── procm │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── src │ │ └── lib.rs └── workspace-virtual │ ├── Cargo.lock │ ├── Cargo.toml │ └── crates │ ├── bar │ ├── Cargo.toml │ └── src │ │ └── lib.rs │ ├── exc │ ├── Cargo.toml │ └── src │ │ └── main.rs │ └── foo │ ├── Cargo.toml │ └── src │ └── main.rs └── toml2json ├── Cargo.lock ├── Cargo.toml ├── README.md ├── default.nix └── src └── main.rs /.github/workflows/binary-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/.github/workflows/binary-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/README.md -------------------------------------------------------------------------------- /cache/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/cache/Cargo.lock -------------------------------------------------------------------------------- /cache/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/cache/Cargo.toml -------------------------------------------------------------------------------- /cache/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/cache/default.nix -------------------------------------------------------------------------------- /cache/src/lib.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crates-io-override/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/crates-io-override/default.nix -------------------------------------------------------------------------------- /crates-io-override/proc-macro.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/crates-io-override/proc-macro.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/flake.nix -------------------------------------------------------------------------------- /lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/default.nix -------------------------------------------------------------------------------- /lib/glob.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/glob.nix -------------------------------------------------------------------------------- /lib/pkg-info.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/pkg-info.nix -------------------------------------------------------------------------------- /lib/resolve.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/resolve.nix -------------------------------------------------------------------------------- /lib/semver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/semver.nix -------------------------------------------------------------------------------- /lib/support.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/support.nix -------------------------------------------------------------------------------- /lib/target-cfg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/lib/target-cfg.nix -------------------------------------------------------------------------------- /noc/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/noc/Cargo.lock -------------------------------------------------------------------------------- /noc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/noc/Cargo.toml -------------------------------------------------------------------------------- /noc/src/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/noc/src/init.rs -------------------------------------------------------------------------------- /noc/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/noc/src/main.rs -------------------------------------------------------------------------------- /noc/templates/init-flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/noc/templates/init-flake.nix -------------------------------------------------------------------------------- /scripts/cratesio-utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/scripts/cratesio-utils.py -------------------------------------------------------------------------------- /tests/build-deps/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-deps/Cargo.lock -------------------------------------------------------------------------------- /tests/build-deps/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-deps/Cargo.toml -------------------------------------------------------------------------------- /tests/build-deps/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-deps/build.rs -------------------------------------------------------------------------------- /tests/build-deps/src/main.rs: -------------------------------------------------------------------------------- 1 | #[cfg(result = "1.2.3")] 2 | fn main() { 3 | println!("Hello, world!"); 4 | } 5 | -------------------------------------------------------------------------------- /tests/build-feature-env-vars/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-feature-env-vars/Cargo.lock -------------------------------------------------------------------------------- /tests/build-feature-env-vars/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-feature-env-vars/Cargo.toml -------------------------------------------------------------------------------- /tests/build-feature-env-vars/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/build-feature-env-vars/build.rs -------------------------------------------------------------------------------- /tests/build-feature-env-vars/src/main.rs: -------------------------------------------------------------------------------- 1 | #[cfg(result = "1")] 2 | fn main() { 3 | println!("Hello, world!"); 4 | } 5 | -------------------------------------------------------------------------------- /tests/cap-lints/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/cap-lints/Cargo.lock -------------------------------------------------------------------------------- /tests/cap-lints/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/cap-lints/Cargo.toml -------------------------------------------------------------------------------- /tests/cap-lints/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/cap-lints/src/main.rs -------------------------------------------------------------------------------- /tests/crate-names/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/crate-names/Cargo.lock -------------------------------------------------------------------------------- /tests/crate-names/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/crate-names/Cargo.toml -------------------------------------------------------------------------------- /tests/crate-names/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/crate-names/src/main.rs -------------------------------------------------------------------------------- /tests/custom-lib-name/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/custom-lib-name/Cargo.lock -------------------------------------------------------------------------------- /tests/custom-lib-name/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/custom-lib-name/Cargo.toml -------------------------------------------------------------------------------- /tests/custom-lib-name/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn custom() -> i32 { 2 | 42 3 | } 4 | -------------------------------------------------------------------------------- /tests/custom-lib-name/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/custom-lib-name/src/main.rs -------------------------------------------------------------------------------- /tests/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/default.nix -------------------------------------------------------------------------------- /tests/dependency-v1/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v1/Cargo.lock -------------------------------------------------------------------------------- /tests/dependency-v1/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v1/Cargo.toml -------------------------------------------------------------------------------- /tests/dependency-v1/README.md: -------------------------------------------------------------------------------- 1 | This `Cargo.lock` is generated by rust 1.37.0. 2 | -------------------------------------------------------------------------------- /tests/dependency-v1/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v1/src/main.rs -------------------------------------------------------------------------------- /tests/dependency-v2/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v2/Cargo.lock -------------------------------------------------------------------------------- /tests/dependency-v2/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v2/Cargo.toml -------------------------------------------------------------------------------- /tests/dependency-v2/README.md: -------------------------------------------------------------------------------- 1 | This `Cargo.lock` is generated by rust 1.41.0. 2 | -------------------------------------------------------------------------------- /tests/dependency-v2/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v2/src/main.rs -------------------------------------------------------------------------------- /tests/dependency-v3/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v3/Cargo.lock -------------------------------------------------------------------------------- /tests/dependency-v3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v3/Cargo.toml -------------------------------------------------------------------------------- /tests/dependency-v3/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/dependency-v3/src/main.rs -------------------------------------------------------------------------------- /tests/fake-semver/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/fake-semver/Cargo.toml -------------------------------------------------------------------------------- /tests/fake-semver/src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/features/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/features/Cargo.lock -------------------------------------------------------------------------------- /tests/features/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/features/Cargo.toml -------------------------------------------------------------------------------- /tests/features/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/features/src/main.rs -------------------------------------------------------------------------------- /tests/libz-dynamic/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-dynamic/Cargo.lock -------------------------------------------------------------------------------- /tests/libz-dynamic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-dynamic/Cargo.toml -------------------------------------------------------------------------------- /tests/libz-dynamic/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-dynamic/build.rs -------------------------------------------------------------------------------- /tests/libz-dynamic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-dynamic/src/main.rs -------------------------------------------------------------------------------- /tests/libz-static/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-static/Cargo.lock -------------------------------------------------------------------------------- /tests/libz-static/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-static/Cargo.toml -------------------------------------------------------------------------------- /tests/libz-static/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-static/build.rs -------------------------------------------------------------------------------- /tests/libz-static/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-static/src/lib.rs -------------------------------------------------------------------------------- /tests/libz-static/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/libz-static/src/main.rs -------------------------------------------------------------------------------- /tests/lto-fat/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-fat/Cargo.lock -------------------------------------------------------------------------------- /tests/lto-fat/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-fat/Cargo.toml -------------------------------------------------------------------------------- /tests/lto-fat/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-fat/src/main.rs -------------------------------------------------------------------------------- /tests/lto-proc-macro/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-proc-macro/Cargo.lock -------------------------------------------------------------------------------- /tests/lto-proc-macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-proc-macro/Cargo.toml -------------------------------------------------------------------------------- /tests/lto-proc-macro/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-proc-macro/src/main.rs -------------------------------------------------------------------------------- /tests/lto-thin/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-thin/Cargo.lock -------------------------------------------------------------------------------- /tests/lto-thin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-thin/Cargo.toml -------------------------------------------------------------------------------- /tests/lto-thin/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/lto-thin/src/main.rs -------------------------------------------------------------------------------- /tests/tokio-app/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/tokio-app/Cargo.lock -------------------------------------------------------------------------------- /tests/tokio-app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/tokio-app/Cargo.toml -------------------------------------------------------------------------------- /tests/tokio-app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/tokio-app/src/main.rs -------------------------------------------------------------------------------- /tests/workspace-inline/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/Cargo.lock -------------------------------------------------------------------------------- /tests/workspace-inline/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-inline/bar/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/bar/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-inline/bar/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/bar/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace-inline/baz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/baz/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-inline/baz/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-inline/baz/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace-inline/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("{}, world!", bar::hello()); 3 | } 4 | -------------------------------------------------------------------------------- /tests/workspace-proc-macro-lto/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-proc-macro-lto/Cargo.lock -------------------------------------------------------------------------------- /tests/workspace-proc-macro-lto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-proc-macro-lto/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-proc-macro-lto/procm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-proc-macro-lto/procm/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-proc-macro-lto/procm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-proc-macro-lto/procm/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace-proc-macro-lto/src/lib.rs: -------------------------------------------------------------------------------- 1 | procm::acro!("Hello, world!"); 2 | -------------------------------------------------------------------------------- /tests/workspace-virtual/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/Cargo.lock -------------------------------------------------------------------------------- /tests/workspace-virtual/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/bar/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/crates/bar/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/bar/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/crates/bar/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/exc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/crates/exc/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/exc/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/foo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/tests/workspace-virtual/crates/foo/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace-virtual/crates/foo/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, {}!", bar::world()); 3 | } 4 | -------------------------------------------------------------------------------- /toml2json/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/toml2json/Cargo.lock -------------------------------------------------------------------------------- /toml2json/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/toml2json/Cargo.toml -------------------------------------------------------------------------------- /toml2json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/toml2json/README.md -------------------------------------------------------------------------------- /toml2json/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/toml2json/default.nix -------------------------------------------------------------------------------- /toml2json/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oxalica/nocargo/HEAD/toml2json/src/main.rs --------------------------------------------------------------------------------