stfs 0.1.0

Parser for Xbox 360 STFS (Secure Transacted File System) packages
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 = "2021"
name = "stfs"
version = "0.1.0"
authors = ["Lander Brandt <landerbrandt@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for Xbox 360 STFS (Secure Transacted File System) packages"
readme = "README.md"
keywords = [
    "xbox360",
    "stfs",
    "xbox",
    "parser",
]
categories = [
    "parser-implementations",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/landaire/acceleration"

[features]
async-vfs = [
    "vfs",
    "fskit/async-vfs",
    "dep:async-trait",
    "dep:futures",
]
base64-serde = ["dep:base64"]
default = []
vfs = [
    "dep:fskit",
    "dep:vfs",
]

[lib]
name = "stfs"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

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

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

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.bitflags]
version = "2.5"

[dependencies.byteorder]
version = "1.4"

[dependencies.fskit]
version = "0.2"
features = ["vfs"]
optional = true

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.num_enum]
version = "0.5"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.sha-1]
version = "0.10.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.vfs]
version = "0.13"
optional = true

[dependencies.xenon_types]
version = "0.1"

[dev-dependencies.insta]
version = "1"
features = ["toml"]