libpfs3 0.1.6

Pure Rust PFS3 (Amiga) filesystem library — read, write, format, and check
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"
rust-version = "1.94.1"
name = "libpfs3"
version = "0.1.6"
authors = ["Fabian Schmieder <436979+metaneutrons@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust PFS3 (Amiga) filesystem library — read, write, format, and check"
homepage = "https://github.com/metaneutrons/pfs3"
readme = "README.md"
keywords = [
    "amiga",
    "pfs3",
    "filesystem",
    "retro",
    "fuse",
]
categories = [
    "filesystem",
    "parser-implementations",
]
license = "LGPL-3.0-or-later"
repository = "https://github.com/metaneutrons/pfs3"

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

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

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

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

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

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

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

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

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

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

[dependencies.byteorder]
version = "1"

[dependencies.thiserror]
version = "2"

[dev-dependencies.sevenz-rust2]
version = "0.22"

[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
many_single_char_names = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
too_many_lines = "allow"
unnecessary_wraps = "allow"
unreadable_literal = "allow"
unused_self = "allow"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "warn"
priority = -1

[lints.clippy.nursery]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "forbid"