Skip to content

Commit

Permalink
Update to derive_more 0.99.1 and syn, quote, proc_macro2 1.0 (#29)
Browse files Browse the repository at this point in the history
* [*] update to derive_more 0.99.1

* remove Cargo.lock from .gitignore

* update Cargo.lock

* [derive] make syn use only derive feature instead of full
  • Loading branch information
Robbepop authored Nov 13, 2019
1 parent 286a442 commit 5b287f5
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
**/target/
**/*.rs.bk
Cargo.lock

.DS_Store

Expand Down
119 changes: 119 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
[dependencies]
type-metadata-derive = { version = "0.1.0", path = "derive", default-features = false, optional = true }
serde = { version = "1", default-features = false, features = ["derive", "alloc"] }
derive_more = { version = "0.15", features = ["no_std"] }
derive_more = { version = "0.99.1", default-features = false, features = ["from"] }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ proc-macro = true

[dependencies]
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
syn = { version = "1.0", features = ["derive"] }
proc-macro2 = "1.0"
2 changes: 1 addition & 1 deletion test_suite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ license = "Apache-2.0"
type-metadata = { path = "..", features = ["derive"] }

serde = "1.0"
serde_json = "1.0"
serde_json = "1.0"

0 comments on commit 5b287f5

Please sign in to comment.