[package]
edition = "2024"
rust-version = "1.89"
name = "rustwide"
version = "0.23.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Execute your code on the Rust ecosystem."
documentation = "https://docs.rs/rustwide"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/rustwide"
[features]
unstable = []
unstable-toolchain-ci = []
[lib]
name = "rustwide"
path = "src/lib.rs"
[[example]]
name = "docs-builder"
path = "examples/docs-builder.rs"
[[test]]
name = "issue_30"
path = "tests/issue_30.rs"
[[test]]
name = "logging_init_with"
path = "tests/logging_init_with.rs"
[[test]]
name = "logging_not_initialized"
path = "tests/logging_not_initialized.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.anyhow]
version = "1.0.68"
features = ["backtrace"]
[dependencies.attohttpc]
version = "0.30.1"
[dependencies.base64]
version = "0.22.0"
[dependencies.flate2]
version = "1"
[dependencies.fs2]
version = "0.4.3"
[dependencies.futures-util]
version = "0.3.5"
[dependencies.getrandom]
version = "0.4.1"
features = ["std"]
[dependencies.git2]
version = "0.20.2"
[dependencies.http]
version = "1.1.0"
[dependencies.log]
version = "0.4.6"
[dependencies.percent-encoding]
version = "2.1.0"
[dependencies.remove_dir_all]
version = "1.0.0"
[dependencies.scopeguard]
version = "1.0.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tar]
version = "0.4.0"
[dependencies.tempfile]
version = "3.0.0"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.0"
features = [
"process",
"time",
"io-util",
"rt",
"rt-multi-thread",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["io-util"]
[dependencies.toml]
version = "0.9.10"
[dependencies.walkdir]
version = "2.2"
[dev-dependencies.env_logger]
version = "0.11.3"
[dev-dependencies.rand]
version = "0.10.0"
[dev-dependencies.test-case]
version = "3.3.1"
[dev-dependencies.tiny_http]
version = "0.12.0"
[target."cfg(unix)".dependencies.nix]
version = "0.30.0"
features = [
"signal",
"user",
]
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52.0"
features = [
"Win32_Foundation",
"Win32_System_Threading",
]