-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (31 loc) · 848 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
[package]
name = "ghostfat"
description = "Virtual FAT16 file system for embedded USB Mass Storage Device use"
repository = "https://github.com/ryankurte/ghostfat"
keywords = [ "fat", "fat16", "filesystem", "embedded", "no-std" ]
categories = [ "embedded", "filesystem", "no-std" ]
version = "0.5.0"
edition = "2021"
license = "MPL-2.0"
[features]
defmt-default = [ "defmt", "defmt-info" ]
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []
std = []
nightly = []
default = [ "std" ]
[dependencies]
defmt = {version = "0.3.1", optional = true }
log = { version = "0.4.16", default_features = false }
packing = "0.2.0"
usbd_scsi = "0.1.0"
bitflags = "1.3.2"
#bytes = { version = "1.1.0", default_features = false }
[dev-dependencies]
fatfs = "0.3.5"
rand = "0.8.5"
simplelog = "0.11.2"
pretty_assertions = "1.2.1"