forked from hhatto/rust-embed
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 777 Bytes
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
[package]
name = "rust-embed-for-web-utils"
version = "11.3.0"
description = "Utilities for rust-embed-for-web"
readme = "readme.md"
repository = "https://github.com/SeriousBug/rust-embed-for-web"
license = "MIT"
keywords = ["http", "rocket", "static", "web", "server"]
categories = ["web-programming::http-server"]
edition = "2018"
[dependencies]
# Find files to include
walkdir = "2.4.0"
# Compute hash
sha2 = "0.10.8"
# Encode hash & etag
base85rs = "0.1"
# Compute last-modified timestamps
chrono = { version = "0.4", default-features = false, features = ["std"] }
# Compute the mime types
new_mime_guess = "4.0.1"
# Filter by glob include/exclude
globset = { version = "0.4", optional = true }
[features]
default = []
include-exclude = ["globset"]
compression-zstd = []