-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (30 loc) · 856 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]
name = "rpkl"
version = "0.3.5"
edition = "2021"
license = "MIT"
repository = "https://github.com/z-jxy/rpkl"
description = "Bindings and codegen for Apple's Pkl configuration language"
keywords = ["pkl", "apple", "codegen"]
readme = "README.md"
[dependencies]
rmp-serde = "1.1.2"
rmpv = "1.0.1"
serde = { version = "1.0", features = ["derive"] }
# Gated dependencies
convert_case = { version = "0.6.0", optional = true }
dhat = { version = "0.3.3", optional = true }
tracing = { version = "0.1.40", optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
[target.'cfg(windows)'.dependencies]
dunce = "1.0.4"
[dev-dependencies]
serde_json = "1.0.117"
[features]
default = []
trace = ["tracing", "tracing-subscriber"]
dhat-heap = ["dhat"]
dhat-ad-hoc = ["dhat"]
codegen = ["convert_case"]
[profile.release]
debug = 1