Some checks failed
Tagged release / prepare-release (push) Successful in 2m53s
Tagged release / build-macos (push) Failing after 25m20s
Tagged release / build-linux-arm64 (push) Successful in 35m45s
Tagged release / build-linux-x64 (push) Failing after 16s
Tagged release / build-windows (push) Failing after 26m8s
Tagged release / publish-release (push) Has been skipped
66 lines
1.9 KiB
TOML
66 lines
1.9 KiB
TOML
[package]
|
|
name = "bds-core"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["dylib"]
|
|
|
|
[dependencies]
|
|
uuid = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
chrono = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
md5 = { workspace = true }
|
|
unicode-normalization = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
walkdir = { workspace = true }
|
|
image = { workspace = true }
|
|
hpvcd = { workspace = true }
|
|
webp = { workspace = true }
|
|
rust-stemmers = { workspace = true }
|
|
sys-locale = { workspace = true }
|
|
fluent-bundle = { workspace = true }
|
|
fluent-syntax = { workspace = true }
|
|
pulldown-cmark = { workspace = true }
|
|
liquid = { workspace = true }
|
|
liquid-core = { workspace = true }
|
|
quick-xml = { workspace = true }
|
|
htmd = { workspace = true }
|
|
regex = { workspace = true }
|
|
rayon = { workspace = true }
|
|
pagefind = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
keyring = { workspace = true }
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true }
|
|
diesel = { workspace = true }
|
|
diesel_migrations = { workspace = true }
|
|
libsqlite3-sys = { workspace = true }
|
|
mlua = { workspace = true }
|
|
url = { workspace = true }
|
|
base64 = { workspace = true }
|
|
dirs = { workspace = true }
|
|
fastembed = { workspace = true }
|
|
ort = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
usearch = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
# libwebp's MSVC autodetection enables SSE 4.1 sources, so clang-cl must
|
|
# compile them with the matching target feature during cargo-xwin builds.
|
|
libwebp-sys = { workspace = true, features = ["sse41"] }
|
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
|
usearch = { workspace = true, features = ["numkong"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["libsqlite3-sys", "libwebp-sys"]
|