Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ license = "Apache-2.0"
[workspace.dependencies]
anyhow = "1"
app-demo-core = { path = "examples/app-demo/crates/app-demo-core" }
async-compression = { version = "0.4", features = ["futures-io", "gzip", "brotli"] }
async-compression = { version = "0.4", features = [
"futures-io",
"gzip",
"brotli",
] }
async-stream = "0.3"
async-trait = "0.1"
axum = { version = "0.8", default-features = true }
Expand Down Expand Up @@ -64,3 +68,4 @@ tracing = "0.1"
validator = { version = "0.20", features = ["derive"] }
walkdir = { version = "2" }
worker = { version = "0.7", features = ["http"] }
web-time = "1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⛏️ Please keep imports in sorted order

1 change: 1 addition & 0 deletions crates/edgezero-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ tower-service = { workspace = true }
tracing = { workspace = true }
validator = { workspace = true }
log = { workspace = true }
web-time = { workspace = true }

[dev-dependencies]
brotli = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/edgezero-core/src/middleware.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::future::Future;
use std::sync::Arc;
use std::time::Instant;
use web_time::Instant;

use async_trait::async_trait;

Expand Down
Loading