windjammer-runtime 0.45.0

Runtime library for Windjammer standard library implementations
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 = "windjammer-runtime"
version = "0.45.0"
authors = [
    "Jeffrey Friedman <20387583+jeffreyfriedman@users.noreply.github.com>",
    "Windjammer Contributors",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime library for Windjammer standard library implementations"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jeffreyfriedman/windjammer"

[features]
db = ["sqlx"]
default = []
server = [
    "tower",
    "tower-http",
]
wasm = [
    "wasm-bindgen",
    "web-sys",
    "js-sys",
    "console_error_panic_hook",
    "wasm-bindgen-futures",
]

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

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

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

[dependencies.anyhow]
version = "1.0"

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

[dependencies.axum]
version = "0.8"
features = ["macros"]

[dependencies.base64]
version = "0.21"

[dependencies.bcrypt]
version = "0.17"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4.5"
features = ["derive"]

[dependencies.console_error_panic_hook]
version = "0.1"
optional = true

[dependencies.csv]
version = "1.3"

[dependencies.dirs]
version = "5.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.getrandom]
version = "0.2"
features = ["js"]

[dependencies.hex]
version = "0.4"

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.mime_guess]
version = "2.0"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1.8"

[dependencies.regex]
version = "1.10"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sqlx]
version = "0.8"
features = [
    "runtime-tokio-native-tls",
    "sqlite",
]
optional = true
default-features = false

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1"
features = ["full"]

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

[dependencies.tower-http]
version = "0.5"
features = [
    "fs",
    "trace",
]
optional = true

[dependencies.url]
version = "2.5"

[dependencies.urlencoding]
version = "2.1"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dependencies.wasm-bindgen-futures]
version = "0.4"
optional = true

[dependencies.web-sys]
version = "0.3"
features = [
    "Document",
    "Element",
    "HtmlElement",
    "Node",
    "Text",
    "Window",
    "Event",
    "EventTarget",
    "MouseEvent",
    "KeyboardEvent",
    "InputEvent",
    "HtmlInputElement",
    "HtmlButtonElement",
    "DomTokenList",
    "console",
    "Storage",
    "Worker",
    "MessageEvent",
    "Navigator",
    "WebSocket",
    "Request",
    "Response",
    "RequestInit",
    "Headers",
]
optional = true

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "blocking",
]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin)"]