Move all dependencies to workspace
This commit is contained in:
parent
611bf3a9f1
commit
4f725a05c9
4 changed files with 48 additions and 33 deletions
15
Cargo.toml
15
Cargo.toml
|
|
@ -8,11 +8,26 @@ edition = "2021"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
anyhow = "1.0.83"
|
anyhow = "1.0.83"
|
||||||
|
axum = "0.7.5"
|
||||||
|
clap = { version = "4.5.4", features = ["derive", "deprecated"] }
|
||||||
|
comemo = "0.4.0"
|
||||||
cosmic-text = "0.11.2"
|
cosmic-text = "0.11.2"
|
||||||
|
escpos = "0.12.2"
|
||||||
image = "0.25.1"
|
image = "0.25.1"
|
||||||
|
mark.git = "https://github.com/Garmelon/mark.git"
|
||||||
|
mime_guess = "2.0.4"
|
||||||
palette = "0.7.6"
|
palette = "0.7.6"
|
||||||
|
paste = "1.0.15"
|
||||||
|
rand = "0.8.5"
|
||||||
|
rust-embed = "8.4.0"
|
||||||
|
serde = { version = "1.0.201", features = ["derive"] }
|
||||||
showbits-assets.path = "./showbits-assets"
|
showbits-assets.path = "./showbits-assets"
|
||||||
showbits-common.path = "./showbits-common"
|
showbits-common.path = "./showbits-common"
|
||||||
|
time = "0.3.36"
|
||||||
|
tokio = "1.37.0"
|
||||||
|
typst = "0.11.0"
|
||||||
|
typst-assets = { version = "0.11.0", features = ["fonts"] }
|
||||||
|
typst-render = "0.11.0"
|
||||||
|
|
||||||
[workspace.dependencies.taffy]
|
[workspace.dependencies.taffy]
|
||||||
version = "0.4.3"
|
version = "0.4.3"
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "showbits-assets"
|
name = "showbits-assets"
|
||||||
version.workspace = true
|
version = { workspace = true }
|
||||||
edition.workspace = true
|
edition = { workspace = true }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,21 @@
|
||||||
[package]
|
[package]
|
||||||
name = "showbits-common"
|
name = "showbits-common"
|
||||||
version.workspace = true
|
version = { workspace = true }
|
||||||
edition.workspace = true
|
edition = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow = { workspace = true }
|
||||||
comemo = "0.4.0"
|
comemo = { workspace = true }
|
||||||
cosmic-text.workspace = true
|
cosmic-text = { workspace = true }
|
||||||
image.workspace = true
|
image = { workspace = true }
|
||||||
mark.git = "https://github.com/Garmelon/mark.git"
|
mark = { workspace = true }
|
||||||
palette.workspace = true
|
palette = { workspace = true }
|
||||||
paste = "1.0.15"
|
paste = { workspace = true }
|
||||||
showbits-assets.workspace = true
|
showbits-assets = { workspace = true }
|
||||||
taffy.workspace = true
|
taffy = { workspace = true }
|
||||||
typst = "0.11.0"
|
typst = { workspace = true }
|
||||||
typst-assets = { version = "0.11.0", features = ["fonts"] }
|
typst-assets = { workspace = true }
|
||||||
typst-render = "0.11.0"
|
typst-render = { workspace = true }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,24 @@
|
||||||
[package]
|
[package]
|
||||||
name = "showbits-thermal-printer"
|
name = "showbits-thermal-printer"
|
||||||
version.workspace = true
|
version = { workspace = true }
|
||||||
edition.workspace = true
|
edition = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow.workspace = true
|
anyhow = { workspace = true }
|
||||||
axum = { version = "0.7.5", features = ["multipart"] }
|
axum = { workspace = true, features = ["multipart"] }
|
||||||
clap = { version = "4.5.4", features = ["derive", "deprecated"] }
|
clap = { workspace = true }
|
||||||
escpos = { version = "0.12.2" }
|
escpos = { workspace = true }
|
||||||
image.workspace = true
|
image = { workspace = true }
|
||||||
mime_guess = "2.0.4"
|
mime_guess = { workspace = true }
|
||||||
palette.workspace = true
|
palette = { workspace = true }
|
||||||
rand = "0.8.5"
|
rand = { workspace = true }
|
||||||
rust-embed = "8.4.0"
|
rust-embed = { workspace = true }
|
||||||
serde = { version = "1.0.201", features = ["derive"] }
|
serde = { workspace = true }
|
||||||
showbits-assets.workspace = true
|
showbits-assets = { workspace = true }
|
||||||
showbits-common.workspace = true
|
showbits-common = { workspace = true }
|
||||||
taffy.workspace = true
|
taffy = { workspace = true }
|
||||||
time = "0.3.36"
|
time = { workspace = true }
|
||||||
tokio = { version = "1.37.0", features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue