Skip to content

Commit 29ee89a

Browse files
committed
Auto merge of #142 - therealprof:cargo_toml_upgrade, r=japaric
Upgrade Cargo.toml to the latest versions and style Signed-off-by: Daniel Egger <[email protected]>
2 parents 895722b + 5d17f4f commit 29ee89a

File tree

1 file changed

+23
-12
lines changed

1 file changed

+23
-12
lines changed

Cargo.toml

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,37 @@
11
[package]
22
authors = ["Jorge Aparicio <[email protected]>"]
33
build = "build.rs"
4-
categories = ["command-line-utilities", "embedded", "hardware-support", "no-std"]
4+
categories = [
5+
"command-line-utilities",
6+
"embedded",
7+
"hardware-support",
8+
"no-std",
9+
]
510
description = "Generate Rust register maps (`struct`s) from SVD files"
611
documentation = "https://github.com/japaric/svd2rust#svd2rust"
7-
keywords = ["arm", "cortex-m", "register", "map", "generator"]
12+
keywords = [
13+
"arm",
14+
"cortex-m",
15+
"register",
16+
"map",
17+
"generator",
18+
]
819
license = "MIT OR Apache-2.0"
920
name = "svd2rust"
1021
repository = "https://github.com/japaric/svd2rust"
1122
version = "0.11.4"
1223

24+
[[bin]]
25+
doc = false
26+
name = "svd2rust"
27+
path = "src/main.rs"
28+
1329
[dependencies]
14-
cast = "0.2.0"
15-
clap = "2.20.5"
16-
either = "1.0.3"
17-
error-chain = "0.10.0"
30+
cast = "0.2.2"
31+
clap = "2.26.0"
32+
either = "1.1.0"
33+
error-chain = "0.11.0"
1834
inflections = "1.1.0"
1935
quote = "0.3.15"
2036
svd-parser = "0.5.2"
21-
syn = "0.11.9"
22-
23-
[[bin]]
24-
doc = false
25-
name = "svd2rust"
26-
path = "src/main.rs"
37+
syn = "0.11.11"

0 commit comments

Comments
 (0)