treewide: standardize dependencies to use workspace references
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I81b701d5c1b3cd6855af5c36c7b460e56a6a6964
This commit is contained in:
parent
5f26fb4a61
commit
2717a59fe2
5 changed files with 552 additions and 70 deletions
|
|
@ -38,13 +38,13 @@ tokio-util = { workspace = true }
|
|||
reqwest = { workspace = true }
|
||||
argon2 = { workspace = true }
|
||||
regex = { workspace = true }
|
||||
moka = { version = "0.12", features = ["future"] }
|
||||
urlencoding = "2.1"
|
||||
image_hasher = "2.0"
|
||||
moka = { workspace = true }
|
||||
urlencoding = { workspace = true }
|
||||
image_hasher = { workspace = true }
|
||||
|
||||
# Plugin system
|
||||
pinakes-plugin-api = { path = "../pinakes-plugin-api" }
|
||||
wasmtime = { workspace = true }
|
||||
pinakes-plugin-api.workspace = true
|
||||
wasmtime.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
tempfile = "3.25.0"
|
||||
|
|
|
|||
|
|
@ -5,8 +5,9 @@ version.workspace = true
|
|||
license.workspace = true
|
||||
|
||||
[dependencies]
|
||||
pinakes-core = { path = "../pinakes-core" }
|
||||
pinakes-plugin-api = { path = "../pinakes-plugin-api" }
|
||||
pinakes-core = { workspace = true }
|
||||
pinakes-plugin-api = { workspace = true }
|
||||
|
||||
tokio = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
|
|
@ -19,18 +20,18 @@ clap = { workspace = true }
|
|||
tracing = { workspace = true }
|
||||
tracing-subscriber = { workspace = true }
|
||||
axum = { workspace = true }
|
||||
axum-server = { version = "0.7", features = ["tls-rustls"] }
|
||||
axum-server = { workspace = true, features = ["tls-rustls"] }
|
||||
tower = { workspace = true }
|
||||
tower-http = { workspace = true }
|
||||
governor = { workspace = true }
|
||||
tower_governor = { workspace = true }
|
||||
tokio-util = { version = "0.7", features = ["io"] }
|
||||
tokio-util = { workspace = true, features = ["io"] }
|
||||
argon2 = { workspace = true }
|
||||
blake3 = { workspace = true }
|
||||
rand = "0.9"
|
||||
percent-encoding = "2"
|
||||
http = "1.0"
|
||||
rand = { workspace = true }
|
||||
percent-encoding = { workspace = true }
|
||||
http = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
http-body-util = "0.1"
|
||||
tempfile = "3"
|
||||
http-body-util = "0.1.3"
|
||||
tempfile = "3.25.0"
|
||||
|
|
|
|||
|
|
@ -23,3 +23,13 @@ gray_matter = { workspace = true }
|
|||
regex = { workspace = true }
|
||||
ammonia = { workspace = true }
|
||||
dioxus-free-icons = { workspace = true }
|
||||
gloo-timers = { workspace = true }
|
||||
rand = { workspace = true }
|
||||
|
||||
[features]
|
||||
default = ["web"]
|
||||
web = ["dioxus/web"]
|
||||
desktop = ["dioxus/desktop"]
|
||||
mobile = ["dioxus/mobile"]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue