mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Enhanced audio/video detection for MP4 files to better distinguish audio-only vs. video. * **Dependencies** * Added MP4 parsing dependency and updated AI provider libraries (Anthropic, Google, OpenAI, etc.). * **Bug Fixes** * Tightened authentication state validation for magic-link/OTP flows. * Stricter space-join validation to reject invalid client types/versions. * Improved transcript entry deduplication and data handling. * **API** * Transcript submit payload now requires infos and removes deprecated url/mimeType fields. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
35 lines
1013 B
TOML
35 lines
1013 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "affine_server_native"
|
|
version = "1.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
affine_common = { workspace = true, features = ["doc-loader"] }
|
|
chrono = { workspace = true }
|
|
file-format = { workspace = true }
|
|
infer = { workspace = true }
|
|
mp4parse = { workspace = true }
|
|
napi = { workspace = true, features = ["async"] }
|
|
napi-derive = { workspace = true }
|
|
rand = { workspace = true }
|
|
sha3 = { workspace = true }
|
|
tiktoken-rs = { workspace = true }
|
|
v_htmlescape = { workspace = true }
|
|
y-octo = { workspace = true, features = ["large_refs"] }
|
|
|
|
[target.'cfg(not(target_os = "linux"))'.dependencies]
|
|
mimalloc = { workspace = true }
|
|
|
|
[target.'cfg(all(target_os = "linux", not(target_arch = "arm")))'.dependencies]
|
|
mimalloc = { workspace = true, features = ["local_dynamic_tls"] }
|
|
|
|
[dev-dependencies]
|
|
rayon = { workspace = true }
|
|
tokio = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
napi-build = { workspace = true }
|