forked from rust-bakery/nom-derive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 893 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
[package]
name = "nom-derive"
description = "Custom derive nom parsers from struct"
version = "0.10.0"
license = "MIT/Apache-2.0"
keywords = ["parser","nom"]
categories = ["parsing"]
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]
homepage = "https://github.com/rust-bakery/nom-derive"
repository = "https://github.com/rust-bakery/nom-derive.git"
readme = "README.md"
edition = "2018"
include = [
"LICENSE-*",
"CHANGELOG.md",
"UPGRADING.md",
"README.md",
".gitignore",
".travis.yml",
"Cargo.toml",
"nom-derive-impl/Cargo.toml",
"nom-derive-impl/*.rs",
"src/*.rs",
"src/meta/*.rs",
]
[workspace]
members = ["nom-derive-impl"]
[dependencies]
nom = { version = "7.0", default-features = false, features = ["std"] }
nom-derive-impl = { version="=0.10.0", path="./nom-derive-impl" }
rustversion = "1.0"
[dev-dependencies]
pretty_assertions = "0.7"
trybuild = "1.0"