Last active
August 29, 2015 14:20
-
-
Save erickt/cd9ba1a1a4bc0d11f966 to your computer and use it in GitHub Desktop.
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
[package] | |
name = "aster" | |
version = "0.2.3" | |
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"] | |
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 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 <erick.tryzelaar@gmail.com>"] | |
license = "MIT/Apache-2.0" | |
description = "A quasi-quoting macro system" | |
repository = "https://github.com/erickt/rust-quasi" | |
[features] | |
default = ["syntex", "syntex_syntax"] | |
nightly = [] | |
[dependencies] | |
aster = { version = "*", default-features = false } | |
syntex = { version = "*", optional = true } | |
syntex_syntax = { version = "*", optional = 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
[package] | |
name = "quasi_macros" | |
version = "0.2.0" | |
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"] | |
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