diff options
| author | bors <bors@rust-lang.org> | 2023-07-02 09:23:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-07-02 09:23:06 +0000 |
| commit | 9bdc9aaceb8f12f7c3d3ee205021bfcea09d958f (patch) | |
| tree | 30931555b9e455f04ee6fb689cb81f1f9a7b2227 | |
| parent | f5f0c48ac37fb19705af2864cb50dd6d82e9134e (diff) | |
| parent | 0810827b9735d9c5a0d65edd98978e02516bbe27 (diff) | |
| download | rust-9bdc9aaceb8f12f7c3d3ee205021bfcea09d958f.tar.gz rust-9bdc9aaceb8f12f7c3d3ee205021bfcea09d958f.zip | |
Auto merge of #15195 - davidlattimore:proc-macro-test-no-version, r=HKalbasi
Don't specify proc-macro-test version proc-macro-test is only used as a dev-dependency and isn't published to crates.io, so a version doesn't make sense. Having a version also breaks automatic publishing.
| -rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 7aa12fe4ae1..83d9fd801e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,6 @@ paths = { path = "./crates/paths", version = "0.0.0" } proc-macro-api = { path = "./crates/proc-macro-api", version = "0.0.0" } proc-macro-srv = { path = "./crates/proc-macro-srv", version = "0.0.0" } proc-macro-srv-cli = { path = "./crates/proc-macro-srv-cli", version = "0.0.0" } -proc-macro-test = { path = "./crates/proc-macro-test", version = "0.0.0" } profile = { path = "./crates/profile", version = "0.0.0" } project-model = { path = "./crates/project-model", version = "0.0.0" } sourcegen = { path = "./crates/sourcegen", version = "0.0.0" } @@ -80,6 +79,9 @@ tt = { path = "./crates/tt", version = "0.0.0" } vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" } vfs = { path = "./crates/vfs", version = "0.0.0" } +# local crates that aren't published to crates.io. These should not have versions. +proc-macro-test = { path = "./crates/proc-macro-test" } + # In-tree crates that are published separately and follow semver. See lib/README.md line-index = { version = "0.1.0-pre.1" } la-arena = { version = "0.3.1" } |
