Skip to content

Commit

Permalink
Reformat Cargo.toml.
Browse files Browse the repository at this point in the history
Puts the keys into alphabetical order.
  • Loading branch information
jonathanpallant authored and eldruin committed May 22, 2023
1 parent c13db45 commit d029fd4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[package]
name = "embedded-sdmmc"
version = "0.4.0"
authors = ["Jonathan 'theJPster' Pallant <github@thejpster.org.uk>"]
categories = ["embedded", "no-std"]
description = "A basic SD/MMC driver for Embedded Rust."
edition = "2021"
keywords = ["sdcard", "mmc", "embedded", "fat32"]
categories = ["embedded", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
edition = "2021"
name = "embedded-sdmmc"
readme = "README.md"
repository = "https://github.com/rust-embedded-community/embedded-sdmmc-rs"
version = "0.4.0"

[dependencies]
byteorder = {version = "1", default-features = false}
defmt = {version = "0.3", optional = true}
embedded-hal = "0.2.3"
byteorder = { version = "1", default-features = false }
log = { version = "0.4", default-features = false, optional = true }
defmt = { version = "0.3", optional = true }
log = {version = "0.4", default-features = false, optional = true}

[dev-dependencies]
hex-literal = "0.3"
env_logger = "0.9"
hex-literal = "0.3"

[features]
defmt-log = [ "defmt" ]
default = [ "log" ]
default = ["log"]
defmt-log = ["defmt"]

0 comments on commit d029fd4

Please sign in to comment.