-
-
Save alexcrichton/66efdf846de390b59d4f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[package] | |
name = "aster" | |
version = "0.2.3" | |
authors = ["Erick Tryzelaar <[email protected]>"] | |
license = "MIT/Apache-2.0" | |
description = "A libsyntax ast builder" | |
repository = "https://github.com/erickt/rust-aster" | |
[features] | |
default = ["syntex_syntax"] | |
nightly = [] | |
[dependencies] | |
syntex_syntax = { version = "*", optional = true } |
This file contains hidden or 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
[package] | |
name = "quasi_codegen" | |
version = "0.1.9" | |
authors = ["Erick Tryzelaar <[email protected]>"] | |
license = "MIT/Apache-2.0" | |
description = "A quasi-quoting macro system" | |
repository = "https://github.com/erickt/rust-quasi" | |
[features] | |
default = ["syntex", "syntex_syntax", "aster/default"] | |
nightly = ["aster/nightly"] | |
[dependencies] | |
aster = { version = "*", default-features = false } | |
syntex = { version = "*", optional = true } | |
syntex_syntax = { version = "*", optional = true } |
This file contains hidden or 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
[package] | |
name = "quasi_macros" | |
version = "0.2.0" | |
authors = ["Erick Tryzelaar <[email protected]>"] | |
license = "MIT/Apache-2.0" | |
description = "A quasi-quoting macro system" | |
repository = "https://github.com/erickt/rust-quasi" | |
[lib] | |
name = "quasi_macros" | |
plugin = true | |
[dependencies] | |
quasi_codegen = { path = "../quasi_codegen", default_features = false, features = ["nightly"] } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment