Files
wasmtime/crates/cache/Cargo.toml
Dan Gohman ea0cb971fb Update to rustix 0.26.2. (#3521)
This pulls in a fix for Android, where Android's seccomp policy on older
versions is to make `openat2` irrecoverably crash the process, so we have
to do a version check up front rather than relying on `ENOSYS` to
determine if `openat2` is supported.

And it pulls in the fix for the link errors when multiple versions of
rsix/rustix are linked in.

And it has updates for two crate renamings: rsix has been renamed to
rustix, and unsafe-io has been renamed to io-extras.
2021-11-15 10:21:13 -08:00

35 lines
923 B
TOML

[package]
name = "wasmtime-cache"
version = "0.31.0"
authors = ["The Wasmtime Project Developers"]
description = "Support for automatic module caching with Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
documentation = "https://docs.rs/wasmtime-cache/"
edition = "2018"
[dependencies]
anyhow = "1.0"
base64 = "0.13.0"
bincode = "1.1.4"
directories-next = "2.0"
file-per-thread-logger = "0.1.1"
log = { version = "0.4.8", default-features = false }
serde = { version = "1.0.94", features = ["derive"] }
sha2 = "0.9.0"
toml = "0.5.5"
zstd = { version = "0.9", default-features = false }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = "0.3.7"
[target.'cfg(not(target_os = "windows"))'.dependencies]
rustix = "0.26.2"
[dev-dependencies]
filetime = "0.2.7"
lazy_static = "1.3.0"
more-asserts = "0.2.1"
pretty_env_logger = "0.4.0"
tempfile = "3"