-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add force-embed feature, support multiple directories (WIP)
- Loading branch information
1 parent
7fad903
commit 41f07c8
Showing
13 changed files
with
1,150 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
[workspace] | ||
members = ["memory-serve", "examples/test"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "0.6.0" | ||
[package] | ||
name = "memory-serve" | ||
version = "1.0.0" | ||
edition = "2021" | ||
license = "Apache-2.0 OR MIT" | ||
repository = "https://github.com/tweedegolf/memory-serve" | ||
description = "Fast static file serving for axum web applications" | ||
publish = true | ||
|
||
[features] | ||
force-embed = [] | ||
|
||
[dependencies] | ||
brotli = "7.0" | ||
flate2 = "1.0" | ||
axum = { version = "0.7", default-features = false } | ||
tracing = "0.1" | ||
sha256 = "1.4" | ||
|
||
[build-dependencies] | ||
sha256 = "1.4" | ||
brotli = "7.0" | ||
mime_guess = "2.0" | ||
walkdir = "2" | ||
|
||
[dev-dependencies] | ||
tokio = { version = "1", features = ["full"] } | ||
tower = { version = "0.5", features = ["util"] } | ||
axum = { version = "0.7" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.