-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 686 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 686 Bytes
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 = "odt"
version = "0.4.0"
edition = "2024"
description = "devicetree tools"
repository = "https://github.com/a6f/odt"
readme = "README.md"
default-run = "dtc"
[dependencies]
hashlink = "0.10"
pest = "2"
pest_derive = "2"
clap = { version = "4.5", features = ["derive"], optional = true }
bumpalo = { version = "3.16.0", features = ["collections"] }
pestle = "0.2"
num-derive = "0.4.2"
num-traits = "0.2.19"
[features]
cli = ["clap"]
wrapping-arithmetic = []
[dev-dependencies]
pretty_assertions = "1.4.1"
[[bin]]
name = "dtc"
required-features = ["cli"]
[[bin]]
name = "dtsfmt"
required-features = ["cli"]
[[example]]
name = "positions"
required-features = ["cli"]