Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Publish demo to show up in crater runs
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 22, 2017
1 parent 5a75c46 commit 4981f7d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions demo-hack-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[package]
name = "demo-hack-impl"
version = "0.0.0"
version = "0.0.1"
authors = ["David Tolnay <dtolnay@gmail.com>"]
publish = false
license = "MIT/Apache-2.0"
description = "Demo of proc-macro-hack"
repository = "https://github.com/dtolnay/proc-macro-hack"

[lib]
proc-macro = true

[dependencies]
proc-macro-hack = { path = ".." }
proc-macro-hack-impl = { path = "../impl" }
proc-macro-hack = { version = "0.2", path = ".." }
proc-macro-hack-impl = { version = "0.2", path = "../impl" }
10 changes: 6 additions & 4 deletions demo-hack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
[package]
name = "demo-hack"
version = "0.0.0"
version = "0.0.1"
authors = ["David Tolnay <dtolnay@gmail.com>"]
publish = false
license = "MIT/Apache-2.0"
description = "Demo of proc-macro-hack"
repository = "https://github.com/dtolnay/proc-macro-hack"

[dependencies]
proc-macro-hack = { path = ".." }
proc-macro-hack-impl = { path = "../impl" }
proc-macro-hack = { version = "0.2", path = ".." }
proc-macro-hack-impl = { version = "0.2", path = "../impl" }

0 comments on commit 4981f7d

Please sign in to comment.