Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/cache/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-cache"
3
version.workspace = true
4
authors.workspace = true
5
description = "INTERNAL: Support for automatic module caching with Wasmtime"
6
license = "Apache-2.0 WITH LLVM-exception"
7
repository = "https://github.com/bytecodealliance/wasmtime"
8
documentation = "https://docs.rs/wasmtime-cache/"
9
edition.workspace = true
10
rust-version.workspace = true
11
12
[lints]
13
workspace = true
14
15
[dependencies]
16
anyhow = { workspace = true, features = ['std'] }
17
base64 = { workspace = true }
18
postcard = { workspace = true }
19
directories-next = "2.0"
20
log = { workspace = true }
21
serde = { workspace = true }
22
serde_derive = { workspace = true }
23
sha2 = "0.10.2"
24
toml = { workspace = true }
25
zstd = { version = "0.13.0", default-features = false }
26
27
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
28
workspace = true
29
features = [
30
"Win32_System_Threading",
31
]
32
33
[target.'cfg(not(target_os = "windows"))'.dependencies]
34
rustix = { workspace = true, features = ["process"] }
35
36
[dev-dependencies]
37
filetime = "0.2.7"
38
env_logger = { workspace = true }
39
tempfile = "3"
40
41