polyfs 0.1.1

Minimal, extensible, no_std, no_alloc FAT32 file system driver for SD cards.
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 = "polyfs"
version = "0.1.1"
authors = ["Olivér Pirger <oliver@pirger.eu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal, extensible, no_std, no_alloc FAT32 file system driver for SD cards."
readme = "README.md"
keywords = [
    "async",
    "fat32",
    "sdmmc",
]
categories = [
    "filesystem",
    "hardware-support",
    "asynchronous",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/4f48/sd-fat"

[lib]
name = "polyfs"
path = "src/lib.rs"

[[test]]
name = "block_device"
path = "tests/block_device.rs"

[[test]]
name = "mount"
path = "tests/mount.rs"

[[test]]
name = "read"
path = "tests/read.rs"

[dependencies.embedded-hal]
version = "1.0.0"

[dependencies.embedded-hal-async]
version = "1.0.0"

[dependencies.embedded-io-async]
version = "0.7.0"

[dependencies.heapless]
version = "0.9.2"

[dependencies.trait-variant]
version = "0.1.2"

[dev-dependencies.fastrand]
version = "2.3.0"

[dev-dependencies.tokio]
version = "1.49.0"
features = ["full"]