forked from rust-embedded-community/embedded-sdmmc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 732 Bytes
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
[package]
name = "embedded-sdmmc"
version = "0.4.0"
authors = ["Jonathan 'theJPster' Pallant <github@thejpster.org.uk>"]
description = "A basic SD/MMC driver for Embedded Rust."
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"
readme = "README.md"
[dependencies]
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 }
[dev-dependencies]
hex-literal = "0.3"
env_logger = "0.9"
[features]
defmt-log = [ "defmt" ]
default = [ "log" ]