embedded-exfat 0.4.0

ExFAT filesystem library with async support, mainly focusing on embedded system
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "embedded-exfat"
version = "0.4.0"
authors = ["qiuchengxuan <qiuchengxuan@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ExFAT filesystem library with async support, mainly focusing on embedded system"
readme = "README.md"
keywords = [
    "fat",
    "exfat",
    "filesystem",
    "no_std",
    "async",
]
categories = ["filesystem"]
license = "MIT"
repository = "https://github.com/qiuchengxuan/exfat"

[package.metadata.cargo-feature-combinations]
exclude_feature_sets = [
    [
    "smol",
    "tokio",
],
    [
    "async",
    "std",
],
]
exclude_features = [
    "extern-datetime-now",
    "default",
]

[features]
async = []
default = ["std"]
extern-datetime-now = []
logging = ["dep:log"]
max-filename-size-30 = []
smol = [
    "dep:smol",
    "async",
    "std",
]
std = [
    "chrono/std",
    "chrono/clock",
    "thiserror/std",
    "derive_more/std",
    "displaydoc/std",
]
sync = []
tokio = [
    "dep:tokio",
    "async",
    "std",
]

[lib]
name = "exfat"
path = "src/lib.rs"
doctest = false

[dependencies.async-trait]
version = "0.1"

[dependencies.bitfield]
version = "0.19"

[dependencies.chrono]
version = "0.4"
optional = true
default-features = false

[dependencies.derive_more]
version = "2.0"
features = [
    "display",
    "from",
    "into",
]
default-features = false

[dependencies.displaydoc]
version = "0.2"
default-features = false

[dependencies.heapless]
version = "0.9"

[dependencies.hex-literal]
version = "1.0"

[dependencies.log]
version = "0.4"
optional = true

[dependencies.maybe-async]
version = "0.2.10"
features = ["is_sync"]

[dependencies.memoffset]
version = "0.9"

[dependencies.smol]
version = "2.0"
optional = true

[dependencies.spin]
version = "0.10"

[dependencies.thiserror]
version = "2.0"
default-features = false

[dependencies.tokio]
version = "1.47"
features = [
    "fs",
    "io-std",
    "io-util",
    "rt",
    "sync",
]
optional = true

[dev-dependencies.log]
version = "0.4"

[dev-dependencies.test-log]
version = "0.2.18"