exfat/Cargo.toml

17 lines
336 B
TOML
Raw Permalink Normal View History

2023-02-21 18:05:31 +00:00
[package]
name = "exfat"
version = "0.1.0"
2023-03-02 22:09:36 +00:00
description = "Pure Rust implementation of exFAT file system"
repository = "https://github.com/obhq/exfat"
license = "MIT"
2023-02-21 18:05:31 +00:00
edition = "2021"
2024-09-22 12:37:59 +00:00
rust-version = "1.81"
2023-02-21 18:05:31 +00:00
[features]
default = ["std"]
std = []
2023-02-21 18:05:31 +00:00
[dependencies]
byteorder = { version = "1.4", default-features = false }
2023-02-21 18:05:31 +00:00
thiserror = "1.0"