-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e65c42
commit de5f3ee
Showing
10 changed files
with
25 additions
and
25 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,5 +1,5 @@ | ||
[package] | ||
name = "quote-it" | ||
name = "quote-data" | ||
version = "1.0.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -24,8 +24,8 @@ syn = "2.0.75" | |
heck = "0.5.0" | ||
quote = { version = "1.0.36", optional = true } | ||
proc-macro2 = {version = "1.0.86", optional = true} | ||
derive = { package = "quote-it-codegen", version = "1.0.0", path = "derive" } | ||
helpers = { package = "quote-it-helpers", version = "1.0.0", path = "helpers" } | ||
derive = { package = "quote-data-codegen", version = "1.0.0", path = "derive" } | ||
helpers = { package = "quote-data-helpers", version = "1.0.0", path = "helpers" } | ||
|
||
|
||
[features] | ||
|
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
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,5 +1,5 @@ | ||
[package] | ||
name = "quote-it-codegen" | ||
name = "quote-data-codegen" | ||
version = "1.0.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
|
@@ -16,7 +16,7 @@ syn = "2.0.75" | |
heck = "0.5.0" | ||
quote = "1.0.36" | ||
proc-macro2 = "1.0.86" | ||
helpers = { package = "quote-it-helpers", version = "1.0.0", path = "../helpers" } | ||
helpers = { package = "quote-data-helpers", version = "1.0.0", path = "../helpers" } | ||
|
||
[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
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
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
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,5 +1,5 @@ | ||
[package] | ||
name = "quote-it-helpers" | ||
name = "quote-data-helpers" | ||
version = "1.0.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
|
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
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,4 +1,4 @@ | ||
use quote_it::QuoteIt; | ||
use quote_data::QuoteIt; | ||
use quote::ToTokens; | ||
use std::marker::PhantomData; | ||
|
||
|
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