Skip to content

Commit

Permalink
use versioned pelikan-net crate (#115)
Browse files Browse the repository at this point in the history
Sets the pelikan-net dependency version at the workspace level and
moves all dependencies to use the workspace dependency.
  • Loading branch information
brayniac authored Dec 20, 2023
1 parent 1c349e1 commit 3ce36a4
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ metrohash = "1.0.6"
mio = "0.8.8"
nom = "7.1.3"
parking_lot = "0.12.1"
pelikan-net = { path = "./src/net", version = "0.1.0" }
phf = "0.11.2"
proc-macro2 = "1.0.69"
quote = "1.0.33"
Expand Down
2 changes: 1 addition & 1 deletion src/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ license = { workspace = true }
boring = { workspace = true }
clocksource = { workspace = true }
metriken = { workspace = true }
pelikan-net = { path = "../net" }
pelikan-net = { workspace = true }
ringlog = { workspace = true }
serde = { workspace = true, features = ["derive"] }
2 changes: 1 addition & 1 deletion src/core/admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ entrystore = { path = "../../entrystore" }
libc = { workspace = true }
logger = { path = "../../logger" }
metriken = { workspace = true }
pelikan-net = { path = "../../net" }
pelikan-net = { workspace = true }
parking_lot = { workspace = true }
protocol-admin = { path = "../../protocol/admin" }
protocol-common = { path = "../../protocol/common" }
Expand Down
2 changes: 1 addition & 1 deletion src/core/proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ crossbeam-channel = { workspace = true }
entrystore = { path = "../../entrystore" }
logger = { path = "../../logger" }
metriken = { workspace = true }
pelikan-net = { path = "../../net" }
pelikan-net = { workspace = true }
protocol-admin = { path = "../../protocol/admin" }
protocol-common = { path = "../../protocol/common" }
session = { path = "../../session" }
Expand Down
2 changes: 1 addition & 1 deletion src/core/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ entrystore = { path = "../../entrystore" }
libc = {workspace = true}
logger = { path = "../../logger" }
metriken = { workspace = true }
pelikan-net = { path = "../../net" }
pelikan-net = { workspace = true }
protocol-admin = { path = "../../protocol/admin" }
protocol-common = { path = "../../protocol/common" }
session = { path = "../../session" }
Expand Down
2 changes: 1 addition & 1 deletion src/proxy/momento/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ libc = { workspace = true }
logger = { path = "../../logger" }
metriken = { workspace = true }
momento = "0.32.0"
pelikan-net = { path = "../../net" }
pelikan-net = { workspace = true }
protocol-admin = { path = "../../protocol/admin" }
protocol-memcache = { path = "../../protocol/memcache" }
protocol-resp = { path = "../../protocol/resp" }
Expand Down
2 changes: 1 addition & 1 deletion src/session/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ bytes = { workspace = true }
common = { path = "../common" }
log = { workspace = true }
metriken = { workspace = true }
pelikan-net = { path = "../net" }
pelikan-net = { workspace = true }
protocol-common = { path = "../protocol/common" }

0 comments on commit 3ce36a4

Please sign in to comment.