dixscript 1.0.0

Config, code, and encryption in one file — a data interchange format with compile-time functions, AES-256/ChaCha20 built-in, and cross-platform FFI
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"
rust-version = "1.85"
name = "dixscript"
version = "1.0.0"
authors = ["MidManStudio"]
build = false
exclude = [
    "benches/",
    "tests/",
    "fuzz/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Config, code, and encryption in one file — a data interchange format with compile-time functions, AES-256/ChaCha20 built-in, and cross-platform FFI"
homepage = "https://dixscript-docs.pages.dev"
readme = "README.md"
keywords = [
    "config",
    "encryption",
    "serialization",
    "data-format",
    "gamedev",
]
categories = [
    "config",
    "parser-implementations",
    "encoding",
    "data-structures",
    "cryptography",
]
license = "MIT"
repository = "https://github.com/Mid-D-Man/DixScript-Rust"

[features]
bzip2-support = ["dep:bzip2"]
cloud-import = [
    "dep:reqwest",
    "dep:tokio",
]
default = [
    "cloud-import",
    "bzip2-support",
    "xz-support",
    "rayon-support",
]
rayon-support = ["dep:rayon"]
xz-support = ["dep:lzma-rust2"]

[lib]
name = "dixscript"
crate-type = ["lib"]
path = "src/lib.rs"

[[example]]
name = "binary_capture"
path = "examples/binary_capture.rs"

[dependencies.aes-gcm]
version = "0.10"

[dependencies.argon2]
version = "0.5"

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

[dependencies.base64]
version = "0.21"

[dependencies.bitflags]
version = "2.4"

[dependencies.bzip2]
version = "0.6"
optional = true

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.chrono]
version = "0.4"
features = [
    "serde",
    "wasmbind",
]

[dependencies.flate2]
version = "1.0"
features = ["rust_backend"]
default-features = false

[dependencies.hex]
version = "0.4"

[dependencies.itertools]
version = "0.13"

[dependencies.lazy_static]
version = "1.4"

[dependencies.lzma-rust2]
version = "0.16"
features = [
    "std",
    "encoder",
    "xz",
]
optional = true
default-features = false

[dependencies.memchr]
version = "2.7"

[dependencies.phf]
version = "0.11"
features = ["macros"]

[dependencies.rand]
version = "0.8"
features = ["getrandom"]

[dependencies.regex]
version = "1.10"

[dependencies.rustc-hash]
version = "2.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.toml]
version = "0.8"

[dependencies.unicase]
version = "2.7"

[dependencies.url]
version = "2.5"

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "serde",
    "js",
]

[dependencies.web-time]
version = "1.1"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.hostname]
version = "0.3"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.8"
optional = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.11"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "fs",
    "time",
]
optional = true

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.bincode]
version = "1.3"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.ciborium]
version = "0.2"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.postcard]
version = "1.0"
features = ["alloc"]

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.rmp-serde]
version = "1.1"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.tempfile]
version = "3.10"

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
    "Window",
    "Storage",
]