-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
34 lines (26 loc) · 977 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rocket-file-cache"
version = "1.0.0"
authors = ["Henry Zimmerman <[email protected]>"]
exclude = [
]
description = "An in-memory file cache for the Rocket web framework."
readme = "README.md"
homepage = "https://github.com/hgzimmerman/rocket-file-cache"
repository = "https://github.com/hgzimmerman/rocket-file-cache"
documentation = "https://docs.rs/crate/rocket-file-cache"
license = "MIT"
[badges]
# There may be a small push in the near future where this is marked deprecated.
# I am working on abstracting the caching mechanism used in this crate into a more flexable crate,
# from which a non Rocket-centric web-file-cache can be built.
# When that is finished, I will mark this crate as deprecated and suggest a migration to the new one.
# Expect minor breaking changes.
maintenance = {status = "passively-maintained"}
[dependencies]
rocket = "0.4"
log = "0.4.6"
concurrent-hashmap = "0.2.2"
[dev-dependencies]
tempdir = "0.3.7"
rand = "0.6.4"