Skip to content

Commit d029fd4

Browse files
jonathanpallanteldruin
authored andcommitted
Reformat Cargo.toml.
Puts the keys into alphabetical order.
1 parent c13db45 commit d029fd4

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
[package]
2-
name = "embedded-sdmmc"
3-
version = "0.4.0"
42
authors = ["Jonathan 'theJPster' Pallant <[email protected]>"]
3+
categories = ["embedded", "no-std"]
54
description = "A basic SD/MMC driver for Embedded Rust."
5+
edition = "2021"
66
keywords = ["sdcard", "mmc", "embedded", "fat32"]
7-
categories = ["embedded", "no-std"]
87
license = "MIT OR Apache-2.0"
9-
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
10-
edition = "2021"
8+
name = "embedded-sdmmc"
119
readme = "README.md"
10+
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
11+
version = "0.4.0"
1212

1313
[dependencies]
14+
byteorder = {version = "1", default-features = false}
15+
defmt = {version = "0.3", optional = true}
1416
embedded-hal = "0.2.3"
15-
byteorder = { version = "1", default-features = false }
16-
log = { version = "0.4", default-features = false, optional = true }
17-
defmt = { version = "0.3", optional = true }
17+
log = {version = "0.4", default-features = false, optional = true}
1818

1919
[dev-dependencies]
20-
hex-literal = "0.3"
2120
env_logger = "0.9"
21+
hex-literal = "0.3"
2222

2323
[features]
24-
defmt-log = [ "defmt" ]
25-
default = [ "log" ]
24+
default = ["log"]
25+
defmt-log = ["defmt"]

0 commit comments

Comments
 (0)