├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .rustfmt.toml ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── clippy.toml ├── src └── lib.rs └── tests ├── workspace_deps.rs └── workspace_deps ├── Cargo.toml ├── my-cool-dep ├── Cargo.toml └── src │ └── lib.rs ├── src └── lib.rs └── test-crate ├── Cargo.toml └── src └── lib.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/README.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/clippy.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace_deps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/tests/workspace_deps.rs -------------------------------------------------------------------------------- /tests/workspace_deps/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/tests/workspace_deps/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace_deps/my-cool-dep/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/tests/workspace_deps/my-cool-dep/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace_deps/my-cool-dep/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/tests/workspace_deps/my-cool-dep/src/lib.rs -------------------------------------------------------------------------------- /tests/workspace_deps/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn use_it() { 2 | my_cool_dep::do_something!() 3 | } 4 | -------------------------------------------------------------------------------- /tests/workspace_deps/test-crate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkchr/proc-macro-crate/HEAD/tests/workspace_deps/test-crate/Cargo.toml -------------------------------------------------------------------------------- /tests/workspace_deps/test-crate/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub fn use_it() { 2 | my_cool_dep::do_something!() 3 | } 4 | --------------------------------------------------------------------------------