100 lines
3.1 KiB
TOML
100 lines
3.1 KiB
TOML
[workspace]
|
||
members = ["crates/*"]
|
||
default-members = ["crates/bili_sync"]
|
||
resolver = "2"
|
||
|
||
[workspace.package]
|
||
version = "2.6.1"
|
||
authors = ["amtoaer <amtoaer@gmail.com>"]
|
||
license = "MIT"
|
||
description = "由 Rust & Tokio 驱动的哔哩哔哩同步工具"
|
||
edition = "2024"
|
||
publish = false
|
||
|
||
[workspace.dependencies]
|
||
bili_sync_entity = { path = "crates/bili_sync_entity" }
|
||
bili_sync_migration = { path = "crates/bili_sync_migration" }
|
||
|
||
anyhow = { version = "1.0.98", features = ["backtrace"] }
|
||
arc-swap = { version = "1.7.1", features = ["serde"] }
|
||
assert_matches = "1.5.0"
|
||
async-std = { version = "1.13.1", features = ["attributes", "tokio1"] }
|
||
async-stream = "0.3.6"
|
||
async-trait = "0.1.88"
|
||
axum = { version = "0.8.4", features = ["macros", "ws"] }
|
||
base64 = "0.22.1"
|
||
built = { version = "0.7.7", features = ["git2", "chrono"] }
|
||
chrono = { version = "0.4.41", features = ["serde"] }
|
||
clap = { version = "4.5.41", features = ["env", "string"] }
|
||
cookie = "0.18.1"
|
||
cow-utils = "0.1.3"
|
||
dashmap = "6.1.0"
|
||
dirs = "6.0.0"
|
||
enum_dispatch = "0.3.13"
|
||
float-ord = "0.3.2"
|
||
futures = "0.3.31"
|
||
git2 = { version = "0.20.2", features = [], default-features = false }
|
||
handlebars = "6.3.2"
|
||
hex = "0.4.3"
|
||
leaky-bucket = "1.1.2"
|
||
md5 = "0.8.0"
|
||
memchr = "2.7.5"
|
||
once_cell = "1.21.3"
|
||
parking_lot = "0.12.4"
|
||
prost = "0.14.1"
|
||
quick-xml = { version = "0.38.0", features = ["async-tokio"] }
|
||
rand = "0.9.1"
|
||
regex = "1.11.1"
|
||
reqwest = { version = "0.12.22", features = [
|
||
"charset",
|
||
"cookies",
|
||
"gzip",
|
||
"http2",
|
||
"json",
|
||
"rustls-tls",
|
||
"stream",
|
||
], default-features = false }
|
||
rsa = { version = "0.10.0-rc.3", features = ["sha2"] }
|
||
rust-embed-for-web = { git = "https://github.com/amtoaer/rust-embed-for-web", tag = "v1.0.0" }
|
||
sea-orm = { version = "1.1.13", features = [
|
||
"macros",
|
||
"runtime-tokio-rustls",
|
||
"sqlx-sqlite",
|
||
] }
|
||
sea-orm-migration = { version = "1.1.13", features = [] }
|
||
serde = { version = "1.0.219", features = ["derive"] }
|
||
serde_json = "1.0.140"
|
||
serde_urlencoded = "0.7.1"
|
||
strum = { version = "0.27.1", features = ["derive"] }
|
||
sysinfo = "0.36.0"
|
||
thiserror = "2.0.12"
|
||
tokio = { version = "1.46.1", features = ["full"] }
|
||
tokio-stream = { version = "0.1.17", features = ["sync"] }
|
||
tokio-util = { version = "0.7.15", features = ["io", "rt"] }
|
||
toml = "0.9.1"
|
||
tower = "0.5.2"
|
||
tracing = "0.1.41"
|
||
tracing-subscriber = { version = "0.3.19", features = ["chrono", "json"] }
|
||
uuid = { version = "1.17.0", features = ["v4"] }
|
||
validator = { version = "0.20.0", features = ["derive"] }
|
||
|
||
[workspace.metadata.release]
|
||
release = false
|
||
tag-message = ""
|
||
tag-prefix = ""
|
||
pre-release-commit-message = "chore: 发布 bili-sync {{version}}"
|
||
publish = false
|
||
pre-release-replacements = [
|
||
{ file = "../../docs/.vitepress/config.mts", search = "\"v[0-9\\.]+\"", replace = "\"v{{version}}\"", exactly = 1 },
|
||
{ file = "../../docs/introduction.md", search = " v[0-9\\.]+,", replace = " v{{version}},", exactly = 1 },
|
||
{ file = "../../web/package.json", search = "\"version\": \"[0-9\\.]+\"", replace = "\"version\": \"{{version}}\"", exactly = 1 },
|
||
]
|
||
|
||
[profile.dev.package."*"]
|
||
debug = false
|
||
|
||
[profile.release]
|
||
strip = true
|
||
lto = "thin"
|
||
codegen-units = 1
|