-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
35 lines (30 loc) · 1005 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
[package]
name = "uclicious"
version = "0.1.8"
authors = ["Andrey Cherkashin <[email protected]>"]
edition = "2018"
categories = ["config"]
keywords = ["config", "uclicious", "ucl", "libuc"]
description = "Uclicious is a wrapper around Universal Configuration Library (UCL) parser with a lot of sugar."
license = "BSD-2-Clause"
repository = "https://github.com/andoriyu/uclicious"
homepage = "https://github.com/andoriyu/uclicious"
readme = "README.md"
[dependencies]
libucl-bind = { package = "uclicious-libucl-sys", version = "0.8.2" }
bitflags = "1.2.1"
uclicious_derive = { path = "uclicious_derive", optional = true, version = "=0.1.7" }
libc = "0.2"
[dev-dependencies]
uclicious_derive = { path = "uclicious_derive", version = "=0.1.7"}
[features]
vh_env = []
vh_compound = []
vh_basic = ["vh_env", "vh_compound"]
default = ["derive", "vh_basic"]
derive = ["uclicious_derive"]
[[example]]
name = "leak-test"
crate-type = ["bin"]
[workspace]
members = ["uclicious_derive", "uclicious-example"]