mlua-batteries 0.2.1

Batteries-included standard library modules for mlua
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.77"
name = "mlua-batteries"
version = "0.2.1"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Batteries-included standard library modules for mlua"
homepage = "https://github.com/ynishi/mlua-batteries"
readme = "README.md"
keywords = [
    "lua",
    "mlua",
    "batteries",
    "stdlib",
    "sandbox",
]
categories = [
    "development-tools",
    "api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/mlua-batteries"

[features]
base64 = ["dep:base64"]
default = [
    "json",
    "env",
    "path",
    "time",
    "string",
    "validate",
]
env = []
fs = [
    "dep:walkdir",
    "dep:globset",
]
full = [
    "json",
    "env",
    "path",
    "time",
    "string",
    "regex",
    "validate",
    "log",
    "uuid",
    "base64",
    "fs",
    "http",
    "llm",
    "hash",
    "schema",
    "sandbox",
]
hash = ["dep:sha2"]
http = ["dep:ureq"]
json = ["dep:serde_json"]
llm = [
    "http",
    "json",
    "dep:secrecy",
]
log = ["dep:log"]
path = []
regex = ["dep:regex"]
sandbox = ["dep:cap-std"]
schema = [
    "validate",
    "dep:schema-bridge",
]
string = []
time = []
uuid = ["dep:uuid"]
validate = []

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

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

[dependencies.cap-std]
version = "4"
optional = true

[dependencies.globset]
version = "0.4"
optional = true

[dependencies.log]
version = "0.4"
optional = true

[dependencies.mlua]
version = "0.11"
features = [
    "lua54",
    "vendored",
]

[dependencies.regex]
version = "1"
optional = true

[dependencies.schema-bridge]
version = "0.4.0"
features = ["mlua"]
optional = true

[dependencies.secrecy]
version = "0.10"
optional = true

[dependencies.serde_json]
version = "1"
optional = true

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.ureq]
version = "3"
optional = true

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "v7",
]
optional = true

[dependencies.walkdir]
version = "2"
optional = true

[dev-dependencies.proptest]
version = "1"