[package]
edition = "2021"
rust-version = "1.82"
name = "rtb-assets"
version = "0.6.1"
authors = ["Matt Cockayne <matt@phpboyscout.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded-asset + overlay filesystem abstraction. Part of the phpboyscout Rust toolkit."
homepage = "https://assets.rust.phpboyscout.uk"
documentation = "https://docs.rs/rtb-assets"
readme = "README.md"
keywords = [
"assets",
"embedded",
"overlay",
"rust-embed",
"filesystem",
]
categories = [
"development-tools",
"filesystem",
]
license = "MIT"
repository = "https://gitlab.com/phpboyscout/rust/assets"
[lib]
name = "rtb_assets"
path = "src/lib.rs"
[[test]]
name = "bdd"
path = "tests/bdd.rs"
[[test]]
name = "unit"
path = "tests/unit.rs"
[dependencies.json-patch]
version = "4.2.0"
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.rust-embed]
version = "8.12.0"
features = [
"debug-embed",
"include-exclude",
]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2.0.19"
[dev-dependencies.cucumber]
version = "0.23.0"
features = ["macros"]
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.tokio]
version = "1.53.0"
features = ["full"]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"