Skip to content

Commit

Permalink
use yet more workspace dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ghedo committed Feb 24, 2025
1 parent 19bb75e commit 43a10df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
8 changes: 3 additions & 5 deletions qlog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ keywords = { workspace = true }
categories = { workspace = true }

[dependencies]
serde = { version = "1.0.139", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_with = { version = "3.0.0", default-features = false, features = [
"macros",
] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = ["preserve_order"] }
serde_with = { workspace = true, features = ["macros"] }
smallvec = { workspace = true, features = ["serde"] }
8 changes: 4 additions & 4 deletions quiche/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ pkg-config = { version = "0.3", optional = true }
cdylib-link-lines = { version = "0.1", optional = true }

[dependencies]
boring = { version = "4", optional = true }
boring = { workspace = true, optional = true }
either = { version = "1.8", default-features = false }
foreign-types-shared = { version = "0.3.0", optional = true }
intrusive-collections = "0.9.5"
Expand All @@ -85,9 +85,9 @@ windows-sys = { version = "0.59", features = [
] }

[dev-dependencies]
mio = { version = "0.8", features = ["net", "os-poll"] }
ring = "0.17"
url = "2.5"
mio = { workspace = true, features = ["net", "os-poll"] }
ring = { workspace = true }
url = { workspace = true }

[lib]
crate-type = ["lib", "staticlib", "cdylib"]

0 comments on commit 43a10df

Please sign in to comment.