-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
38 lines (33 loc) · 880 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 = "xdrgen"
version = "0.4.4"
authors = ["Jeremy Fitzhardinge <jeremy@goop.org>"]
license = "MIT/Apache-2.0"
description = "XDR codec generator from specification. Designed for use with xdr-codec."
repository = "https://github.com/jsgf/rust-xdr/tree/master/xdrgen"
documentation = "https://docs.rs/xdrgen/"
readme = "README.md"
keywords = ["encoding", "protocol", "xdr", "rfc4506", "serialization"]
include = [ "src/**/*.rs", "tests/**/*.rs", "*.md", "Cargo.toml" ]
[[bin]]
name = "xdrgen"
path = "src/xdrgen.rs"
test = false
bench = false
doc = false
[features]
unstable = []
[dependencies]
log = "0.3"
env_logger = "0.4"
nom = { version="3.1", features=["verbose-errors"] }
quote = "0.3"
clap = "2.24"
lazy_static = "0.2"
bitflags = "0.9"
[dependencies.xdr-codec]
path = "../xdr-codec"
version = "0.4"
[dev-dependencies]
tempdir = "0.3"
error-chain = "0.10"