This repository has been archived by the owner on Aug 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to syn, proc-macro2 and quote "1.0"; Version 1.0.0
- Loading branch information
Showing
3 changed files
with
9 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sm" | ||
version = "0.9.0" | ||
version = "1.0.0" | ||
authors = ["Jean Mertz <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "💋 SM – a static State Machine library" | ||
|
@@ -12,13 +12,13 @@ exclude = ["examples"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
sm_macro = { version = "0.9", path = "../sm_macro", optional = true } | ||
sm_macro = { version = "1.0", path = "../sm_macro", optional = true } | ||
|
||
[dev-dependencies] | ||
compiletest_rs = { version = "0.3", features = [ "stable" ] } | ||
criterion = "0.2" | ||
criterion = "0.3" | ||
rand = "0.5" | ||
sm_macro = { version = "0.9", path = "../sm_macro" } | ||
sm_macro = { version = "1.0", path = "../sm_macro" } | ||
|
||
[features] | ||
macro = ["sm_macro"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sm_macro" | ||
version = "0.9.0" | ||
version = "1.0.0" | ||
authors = ["Jean Mertz <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "💋 SM – a static State Machine macro" | ||
|
@@ -11,12 +11,12 @@ readme = "crates-io.md" | |
edition = "2018" | ||
|
||
[dependencies] | ||
proc-macro2 = "0.4" | ||
quote = "0.6" | ||
syn = "0.15" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "1.0" | ||
|
||
[dev-dependencies] | ||
sm = { version = "0.9", path = "../sm" } | ||
sm = { version = "1.0", path = "../sm" } | ||
|
||
[lib] | ||
proc-macro = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters