mlua-batteries 0.1.2

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.1.2"
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]
default = [
    "json",
    "env",
    "path",
    "time",
]
env = []
fs = [
    "dep:walkdir",
    "dep:globset",
]
full = [
    "json",
    "env",
    "path",
    "time",
    "fs",
    "http",
    "llm",
    "hash",
    "sandbox",
]
hash = ["dep:sha2"]
http = ["dep:ureq"]
json = ["dep:serde_json"]
llm = [
    "http",
    "json",
    "dep:secrecy",
]
path = []
sandbox = ["dep:cap-std"]
time = []

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

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

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

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

[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.walkdir]
version = "2"
optional = true

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