[package]
edition = "2024"
name = "a2fuse"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mount and maintain Apple II ProDOS disk images"
readme = "README.md"
license = "MIT"
repository = "https://github.com/markassad/a2fuse"
[features]
default = []
macfuse = [
"dep:fuser",
"dep:libc",
]
[lib]
name = "a2fuse"
path = "src/lib.rs"
[[bin]]
name = "a2fuse"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "prodos_applesoft_tests"
path = "tests/prodos_applesoft_tests.rs"
[[test]]
name = "prodos_block_tests"
path = "tests/prodos_block_tests.rs"
[[test]]
name = "prodos_directory_tests"
path = "tests/prodos_directory_tests.rs"
[[test]]
name = "prodos_path_tests"
path = "tests/prodos_path_tests.rs"
[[test]]
name = "prodos_writer_tests"
path = "tests/prodos_writer_tests.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ctrlc]
version = "3.5"
[dependencies.fuser]
version = "0.17"
features = ["macfuse-4-compat"]
optional = true
[dependencies.libc]
version = "0.2"
optional = true
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.ureq]
version = "2.10"
default-features = true
[profile.release]
lto = "thin"
strip = true