-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
41 lines (34 loc) · 874 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 = "yang3"
version = "0.10.0"
authors = ["Renato Westphal <[email protected]>"]
description = "libyang3 bindings for Rust"
keywords = ["yang", "libyang"]
edition = "2018"
license = "MIT"
repository = "https://github.com/holo-routing/yang-rs"
documentation = "https://docs.rs/yang3"
readme = "README.md"
categories = ["parser-implementations"]
exclude = ["assets/**"]
[dependencies]
libyang3-sys = { path = "libyang3-sys", version = "0.2.0" }
bitflags = "2.5"
num-traits = "0.2"
num-derive = "0.4"
[target.'cfg(windows)'.dependencies]
libc = "0.2"
[dev-dependencies]
criterion = "0.3.3"
[lints.rust]
rust_2018_idioms = "warn"
[lints.clippy]
missing_safety_doc = "allow"
too_long_first_doc_paragraph = "allow"
[[bench]]
name = "data"
harness = false
[features]
default = []
bindgen = ["libyang3-sys/bindgen"]
bundled = ["libyang3-sys/bundled"]