meta: move public crates to packages/
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I928162008cb1ba02e1aa0e7aa971e8326a6a6964
This commit is contained in:
parent
70b0113d8a
commit
00bab69598
308 changed files with 53890 additions and 53889 deletions
52
Cargo.toml
52
Cargo.toml
|
|
@ -1,5 +1,5 @@
|
|||
[workspace]
|
||||
members = ["crates/*", "xtask"]
|
||||
members = ["crates/*", "packages/*", "xtask"]
|
||||
exclude = ["crates/pinakes-core/tests/fixtures/test-plugin"]
|
||||
resolver = "3"
|
||||
|
||||
|
|
@ -11,35 +11,44 @@ readme = true
|
|||
rust-version = "1.95.0" # follows nightly Rust
|
||||
|
||||
[workspace.dependencies]
|
||||
# Crate components for Pinakes.
|
||||
# Crate components for Pinakes. Those are the internal dependencies that are built
|
||||
# while building any package.
|
||||
pinakes-core = { path = "./crates/pinakes-core" }
|
||||
pinakes-server = { path = "./crates/pinakes-server" }
|
||||
pinakes-plugin-api = { path = "./crates/pinakes-plugin-api" }
|
||||
pinakes-ui = { path = "./crates/pinakes-ui" }
|
||||
pinakes-tui = { path = "./crates/pinakes-tui" }
|
||||
|
||||
tokio = { version = "1.49.0", features = ["full"] }
|
||||
# Pinakes itself is a REST API server. UI and TUI are official visual components
|
||||
# that connect to the server. Using the API documentation, the user can write
|
||||
# their own clients, but we separate "crates" and "packages" to establish the
|
||||
# distinction properly.
|
||||
pinakes-server = { path = "./packages/pinakes-server" }
|
||||
pinakes-ui = { path = "./packages/pinakes-ui" }
|
||||
pinakes-tui = { path = "./packages/pinakes-tui" }
|
||||
|
||||
# Other dependencies. Declaring them in the virtual manifests lets use reuse the crates
|
||||
# without having to track individual crate version across different types of crates. This
|
||||
# also includes *dev* dependencies.
|
||||
tokio = { version = "1.50.0", features = ["full"] }
|
||||
tokio-util = { version = "0.7.18", features = ["rt"] }
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.149"
|
||||
toml = "1.0.3"
|
||||
clap = { version = "4.5.60", features = ["derive", "env"] }
|
||||
toml = "1.0.7"
|
||||
clap = { version = "4.6.0", features = ["derive", "env"] }
|
||||
chrono = { version = "0.4.44", features = ["serde"] }
|
||||
uuid = { version = "1.21.0", features = ["v7", "serde"] }
|
||||
uuid = { version = "1.22.0", features = ["v7", "serde"] }
|
||||
thiserror = "2.0.18"
|
||||
anyhow = "1.0.102"
|
||||
tracing = "0.1.44"
|
||||
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
|
||||
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
|
||||
blake3 = "1.8.3"
|
||||
rustc-hash = "2.1.1"
|
||||
ed25519-dalek = { version = "2.1.1", features = ["std"] }
|
||||
lofty = "0.23.2"
|
||||
lopdf = "0.39.0"
|
||||
ed25519-dalek = { version = "2.2.0", features = ["std"] }
|
||||
lofty = "0.23.3"
|
||||
lopdf = "0.40.0"
|
||||
epub = "2.1.5"
|
||||
matroska = "0.30.0"
|
||||
gray_matter = "0.3.2"
|
||||
kamadak-exif = "0.6.1"
|
||||
rusqlite = { version = "=0.37.0", features = ["bundled", "column_decltype"] }
|
||||
rusqlite = { version = "0.37.0", features = ["bundled", "column_decltype"] }
|
||||
tokio-postgres = { version = "0.7.16", features = [
|
||||
"with-uuid-1",
|
||||
"with-chrono-0_4",
|
||||
|
|
@ -52,7 +61,7 @@ native-tls = "0.2.18"
|
|||
refinery = { version = "0.9.0", features = ["rusqlite", "tokio-postgres"] }
|
||||
walkdir = "2.5.0"
|
||||
notify = { version = "8.2.0", features = ["macos_fsevent"] }
|
||||
winnow = "0.7.14"
|
||||
winnow = "1.0.0"
|
||||
axum = { version = "0.8.8", features = ["macros", "multipart"] }
|
||||
axum-server = { version = "0.8.0" }
|
||||
tower = "0.5.3"
|
||||
|
|
@ -67,7 +76,7 @@ dioxus = { version = "0.7.3", features = ["desktop", "router"] }
|
|||
dioxus-core = { version = "0.7.3" }
|
||||
async-trait = "0.1.89"
|
||||
futures = "0.3.32"
|
||||
image = { version = "0.25.9", default-features = false, features = [
|
||||
image = { version = "0.25.10", default-features = false, features = [
|
||||
"jpeg",
|
||||
"png",
|
||||
"webp",
|
||||
|
|
@ -75,7 +84,7 @@ image = { version = "0.25.9", default-features = false, features = [
|
|||
"tiff",
|
||||
"bmp",
|
||||
] }
|
||||
pulldown-cmark = "0.13.1"
|
||||
pulldown-cmark = "0.13.3"
|
||||
ammonia = "4.1.2"
|
||||
argon2 = { version = "0.5.3", features = ["std"] }
|
||||
mime_guess = "2.0.5"
|
||||
|
|
@ -84,17 +93,18 @@ dioxus-free-icons = { version = "0.10.0", features = ["font-awesome-solid"] }
|
|||
rfd = "0.17.2"
|
||||
gloo-timers = { version = "0.3.0", features = ["futures"] }
|
||||
rand = "0.10.0"
|
||||
moka = { version = "0.12.14", features = ["future"] }
|
||||
moka = { version = "0.12.15", features = ["future"] }
|
||||
urlencoding = "2.1.3"
|
||||
image_hasher = "3.1.1"
|
||||
percent-encoding = "2.3.2"
|
||||
http = "1.4.0"
|
||||
wasmtime = { version = "42.0.1", features = ["component-model"] }
|
||||
wit-bindgen = "0.53.1"
|
||||
tempfile = "3.26.0"
|
||||
wasmtime = { version = "43.0.0", features = ["component-model"] }
|
||||
wit-bindgen = "0.54.0"
|
||||
tempfile = "3.27.0"
|
||||
utoipa = { version = "5.4.0", features = ["axum_extras", "uuid", "chrono"] }
|
||||
utoipa-axum = { version = "0.2.0" }
|
||||
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
|
||||
http-body-util = "0.1.3"
|
||||
|
||||
# See:
|
||||
# <https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue