Some checks failed
Test / frontend-tests (pull_request) Successful in 1m41s
Test / frontend-typecheck (pull_request) Successful in 1m52s
PR Review Automation / review (pull_request) Successful in 4m1s
Test / rust-fmt-check (pull_request) Successful in 12m9s
Test / rust-clippy (pull_request) Failing after 12m26s
Test / rust-tests (pull_request) Failing after 12m35s
Explicitly adds libsodium-sys-stable dependency with use-pkg-config feature to ensure builds use system libsodium via pkg-config instead of attempting vendored builds. Changes: - Add direct dependency on libsodium-sys-stable with use-pkg-config feature - Update Windows build to use pkg-config with cross-compilation support - Remove manual SODIUM_* env vars that bypass pkg-config This resolves "libsodium not found via pkg-config or vcpkg" build failures on Linux and Windows CI targets. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
76 lines
1.7 KiB
TOML
76 lines
1.7 KiB
TOML
[package]
|
|
name = "trcaa"
|
|
version = "1.2.4"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "trcaa_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.6", features = [] }
|
|
cc = "1.0"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-stronghold = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-http = "2"
|
|
tauri-plugin-opener = "2"
|
|
rusqlite = { version = "0.31", features = ["bundled-sqlcipher-vendored-openssl"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.12", features = ["json", "stream", "multipart"] }
|
|
regex = "1"
|
|
aho-corasick = "1"
|
|
uuid = { version = "1", features = ["v7"] }
|
|
printpdf = "0.7"
|
|
docx-rs = "0.4"
|
|
sha2 = { version = "0.10", features = ["std"] }
|
|
hex = "0.4"
|
|
anyhow = "1"
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures = "0.3"
|
|
async-trait = "0.1"
|
|
base64 = "0.22"
|
|
dirs = "5"
|
|
aes-gcm = "0.10"
|
|
rand = "0.9"
|
|
lazy_static = "1.4"
|
|
warp = "0.3"
|
|
urlencoding = "2"
|
|
infer = "0.15"
|
|
url = "2.5.8"
|
|
lopdf = "0.31"
|
|
zip = "0.6"
|
|
quick-xml = "0.36"
|
|
rmcp = { version = "1.7.0", features = [
|
|
"client",
|
|
"transport-child-process",
|
|
"transport-streamable-http-client-reqwest",
|
|
] }
|
|
http = "1.4"
|
|
flate2 = { version = "1", features = ["rust_backend"] }
|
|
serde_yaml = "0.9"
|
|
portable-pty = "0.8"
|
|
libsodium-sys-stable = { version = "1.24", features = ["use-pkg-config"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
tokio-test = "0.4"
|
|
mockito = "1.2"
|
|
rustls = { version = "0.23", features = ["aws_lc_rs"] }
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
strip = true
|
|
|
|
|