mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-14 11:45:02 +01:00
dep updates
This commit is contained in:
parent
693d52ecac
commit
bbf5576872
6 changed files with 35 additions and 35 deletions
12
Cargo.toml
12
Cargo.toml
|
|
@ -17,15 +17,15 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.53"
|
anyhow = "1.0.69"
|
||||||
haesli_core = { path = "./haesli_core" }
|
haesli_core = { path = "./haesli_core" }
|
||||||
haesli_dashboard = { path = "./haesli_dashboard" }
|
haesli_dashboard = { path = "./haesli_dashboard" }
|
||||||
haesli_messaging = { path = "./haesli_messaging" }
|
haesli_messaging = { path = "./haesli_messaging" }
|
||||||
haesli_transport = { path = "./haesli_transport" }
|
haesli_transport = { path = "./haesli_transport" }
|
||||||
clap = { version = "3.1.5", features = ["derive"] }
|
clap = { version = "3.2.23", features = ["derive"] }
|
||||||
tokio = { version = "1.16.1", features = ["full"] }
|
tokio = { version = "1.26.0", features = ["full"] }
|
||||||
tracing = "0.1.30"
|
tracing = "0.1.37"
|
||||||
tracing-subscriber = { version = "0.3.8", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||||||
tracing-tree = "0.2.0"
|
tracing-tree = "0.2.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,12 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
haesli_datastructure = { path = "../haesli_datastructure" }
|
haesli_datastructure = { path = "../haesli_datastructure" }
|
||||||
bytes = "1.1.0"
|
bytes = "1.4.0"
|
||||||
parking_lot = "0.12.0"
|
parking_lot = "0.12.1"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
smallvec = { version = "1.8.0", features = ["union"] }
|
smallvec = { version = "1.10.0", features = ["union"] }
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.38"
|
||||||
tokio = { version = "1.17.0", features = ["sync"] }
|
tokio = { version = "1.26.0", features = ["sync"] }
|
||||||
uuid = "0.8.2"
|
uuid = "0.8.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
||||||
|
|
@ -7,17 +7,17 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
haesli_core = { path = "../haesli_core" }
|
haesli_core = { path = "../haesli_core" }
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.69"
|
||||||
axum = "0.4.8"
|
axum = "0.4.8"
|
||||||
mime_guess = "2.0.4"
|
mime_guess = "2.0.4"
|
||||||
serde = { version = "1.0.136", features = ["derive"] }
|
serde = { version = "1.0.152", features = ["derive"] }
|
||||||
tokio = { version = "1.17.0", features = ["full"] }
|
tokio = { version = "1.26.0", features = ["full"] }
|
||||||
tower = "0.4.12"
|
tower = "0.4.13"
|
||||||
tower-http = { version = "0.2.3", features = ["cors"] }
|
tower-http = { version = "0.2.5", features = ["cors"] }
|
||||||
tracing = "0.1.31"
|
tracing = "0.1.37"
|
||||||
zip = "0.5.13"
|
zip = "0.5.13"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
anyhow = "1.0.55"
|
anyhow = "1.0.69"
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
zip = "0.5.13"
|
zip = "0.5.13"
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,8 @@ edition = "2021"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
haesli_core = { path = "../haesli_core" }
|
haesli_core = { path = "../haesli_core" }
|
||||||
haesli_datastructure = { path = "../haesli_datastructure" }
|
haesli_datastructure = { path = "../haesli_datastructure" }
|
||||||
parking_lot = "0.12.0"
|
parking_lot = "0.12.1"
|
||||||
tracing = "0.1.31"
|
tracing = "0.1.37"
|
||||||
tokio = { version = "1.17.0", features = ["full"] }
|
tokio = { version = "1.26.0", features = ["full"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
||||||
|
|
@ -7,20 +7,20 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
haesli_core = { path = "../haesli_core" }
|
haesli_core = { path = "../haesli_core" }
|
||||||
anyhow = "1.0.53"
|
anyhow = "1.0.69"
|
||||||
bytes = "1.1.0"
|
bytes = "1.4.0"
|
||||||
nom = "7.1.0"
|
nom = "7.1.3"
|
||||||
once_cell = "1.9.0"
|
once_cell = "1.17.1"
|
||||||
rand = "0.8.4"
|
rand = "0.8.5"
|
||||||
regex = "1.5.4"
|
regex = "1.7.1"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.38"
|
||||||
tokio = { version = "1.16.1", features = ["full"] }
|
tokio = { version = "1.26.0", features = ["full"] }
|
||||||
tracing = "0.1.30"
|
tracing = "0.1.37"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3.5"
|
criterion = "0.3.6"
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "parser"
|
name = "parser"
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,8 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.54"
|
anyhow = "1.0.69"
|
||||||
clap = { version = "3.1.1", features = ["derive"] }
|
clap = { version = "3.2.23", features = ["derive"] }
|
||||||
heck = "0.4.0"
|
heck = "0.4.1"
|
||||||
itertools = "0.10.3"
|
itertools = "0.10.5"
|
||||||
strong-xml = "0.6.3"
|
strong-xml = "0.6.3"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue