forked from sjtakada/sysrepo-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 848 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
[package]
authors = [
"Toshiaki Takada <[email protected]>",
"Valentin Kivachuk Burda <[email protected]>",
]
build = "build.rs"
categories = ["external-ffi-bindings", "network-programming"]
description = "Sysrepo Rust bindings generated by bindgen"
edition = "2021"
keywords = ["sysrepo", "libyang", "yang", "netconf"]
license = "Apache-2.0"
name = "sysrepo"
readme = "README.md"
repository = "https://github.com/sjtakada/sysrepo-rs"
version = "0.4.0"
[build-dependencies]
bindgen = "0.59.2"
[dependencies]
libc = "0.2.121"
yang2 = "0.7"
libyang2-sys = "0.6"
[workspace]
members = [
"examples/utils",
"examples/oper_data",
"examples/notif_subscribe",
"examples/notif_send",
"examples/rpc_subscribe",
"examples/rpc_send",
"examples/sr_get_data",
"examples/sr_get_items",
"examples/sr_set_item",
"examples/application_changes",
]