-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
59 lines (56 loc) · 1.47 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "svdtools"
version = "0.3.20"
repository = "https://github.com/rust-embedded/svdtools/"
description = "Tool for modifying bugs in CMSIS SVD"
authors = ["Andrey Zgarbul <[email protected]>", "MarcoIeni"]
categories = [
"command-line-utilities",
"embedded",
"hardware-support",
"no-std",
]
keywords = ["svd", "embedded", "register"]
license = "MIT OR Apache-2.0"
readme = "README.md"
include = [
"/res",
"/src",
"/tests",
"CHANGELOG-rust.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
]
edition = "2021"
rust-version = "1.70"
[dependencies]
clap = { version = "4.5", features = ["derive", "cargo", "color"] }
serde = { version = "1.0", features = ["derive"] }
quick-xml = { version = "0.36", features = ["serialize"] }
svd-rs = { version = "0.14.9", features = ["serde", "derive-from"] }
svd-parser = { version = "0.14.7", features = ["expand"] }
svd-encoder = "0.14.5"
# serde_yaml 0.9.x looks broken
serde_yaml = "0.8.26"
serde_json = { version = "1.0", features = ["preserve_order"] }
anyhow = "1.0.65"
thiserror = "1.0.35"
hashlink = "0.9.1"
globset = "0.4.14"
commands = "0.0.5"
env_logger = "0.11"
log = { version = "~0.4", features = ["std"] }
normpath = "1.3.0"
liquid = "0.26.0"
once_cell = "1.20.0"
rayon = "1.7.0"
regex = "1.10"
itertools = "0.13.0"
phf = { version = "0.11", features = ["macros"] }
[dependencies.yaml-rust]
package = "yaml-rust2"
version = "0.9"
[dev-dependencies]
similar = "2.5.0"
tempfile = "3.3"