-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
27 lines (22 loc) · 775 Bytes
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
[package]
name = "simple_parse"
version = "0.7.0"
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
edition = "2018"
description = "A declarative converter for Rust type to and from binary"
license = "MIT OR Apache-2.0"
#Extra fields for crates.io
readme = "README.md"
documentation = "https://docs.rs/simple_parse"
repository = "https://github.com/elast0ny/simple_parse"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
print-generated = ["simple_parse_derive/print-generated"]
verbose = ["simple_parse_derive/verbose", "log"]
[dependencies]
simple_parse_derive = { version = "0.7.0", path = "simple_parse-derive" }
log = {version = "0", optional = true}
[dev-dependencies]
env_logger = "0"
clap ="2"