-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 943 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "quote-data"
version = "1.0.0"
authors = ["dark-flames <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A tokenization Library for Rust"
repository = "https://github.com/dark-flames/Iroha"
include = [
"src/**",
"derive/**",
"helpers/**",
"tests/**",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT"
]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
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-data-codegen", version = "1.0.0", path = "derive" }
helpers = { package = "quote-data-helpers", version = "1.0.0", path = "helpers" }
[features]
default = ["to-token"]
to-token = ["quote", "proc-macro2"]
[lib]
[workspace]
members = [
"helpers",
"derive"
]