-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
37 lines (32 loc) · 828 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 = "atdf2svd"
version = "0.5.0"
authors = ["Rahix <[email protected]>"]
description = "Tool to convert Atmel's ATDF files to SVD"
readme = "README.md"
license = "GPL-3.0-only"
documentation = "https://github.com/Rahix/atdf2svd"
homepage = "https://github.com/Rahix/atdf2svd"
repository = "https://github.com/Rahix/atdf2svd"
keywords = ["atdf", "svd", "avr", "svd2rust"]
categories = ["command-line-utilities", "embedded"]
edition = "2018"
exclude = [
"tests/",
".github/",
]
[dependencies]
xmltree = "0.10.3"
colored = "2.0.0"
log = "0.4.22"
env_logger = "0.11.5"
gumdrop = "0.8.1"
git-version = "0.3.5"
svd-rs = "0.14.1"
svd-encoder = "0.14.2"
[dev-dependencies]
insta = { version = "1.41.1", features = ["yaml"] }
[profile.test.package.insta]
opt-level = 3
[profile.test.package.similar]
opt-level = 3