Skip to content

Commit

Permalink
Set workspace.dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonbaeten committed Nov 11, 2024
1 parent 1023a64 commit 0f9ed0c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ license = "Apache-2.0 OR MIT"
repository = "https://github.com/tweedegolf/memory-serve"
description = "Fast static file serving for axum web applications"
publish = true

[workspace.dependencies]
memory-serve-core = { path = "./memory-serve-core", version = "1.0.0-beta.0" }
memory-serve-macros = { path = "./memory-serve-macros", version = "1.0.0-beta.0" }
2 changes: 1 addition & 1 deletion memory-serve-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ proc-macro = true
force-embed = []

[dependencies]
memory-serve-core = { path = "../memory-serve-core" }
memory-serve-core.workspace = true
6 changes: 3 additions & 3 deletions memory-serve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ publish.workspace = true
force-embed = ["memory-serve-macros/force-embed"]

[dependencies]
memory-serve-core = { path = "../memory-serve-core" }
memory-serve-macros = { path = "../memory-serve-macros" }
memory-serve-core.workspace = true
memory-serve-macros.workspace = true
brotli = "7.0"
flate2 = "1.0"
axum = { version = "0.7", default-features = false }
tracing = "0.1"
sha256 = "1.4"

[build-dependencies]
memory-serve-core = { path = "../memory-serve-core" }
memory-serve-core.workspace = true

[dev-dependencies]
tokio = { version = "1", features = ["full"] }
Expand Down

0 comments on commit 0f9ed0c

Please sign in to comment.