add deps for network and stats

This commit is contained in:
glyph 2022-01-04 14:06:35 +02:00
parent 731bc1958b
commit a0e80fcda7
2 changed files with 4 additions and 0 deletions

2
Cargo.lock generated
View File

@ -2548,6 +2548,8 @@ dependencies = [
"nest",
"openssl",
"peach-lib",
"peach-network",
"peach-stats",
"percent-encoding 2.1.0",
"regex",
"rocket",

View File

@ -41,6 +41,8 @@ log = "0.4"
nest = "1.0.0"
openssl = { version = "0.10", features = ["vendored"] }
peach-lib = { path = "../peach-lib" }
peach-network = { path = "../peach-network", features = ["serde_support"] }
peach-stats = { path = "../peach-stats", features = ["serde_support"] }
percent-encoding = "2.1.0"
regex = "1"
rocket = { version = "0.5.0-rc.1", features = ["json", "secrets"] }