mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-12 23:56:36 +08:00
4012732058
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [criterion2](https://bheisler.github.io/criterion.rs/book/index.html) ([source](https://redirect.github.com/Boshen/criterion2.rs)) | workspace.dependencies | major | `2` -> `3` | --- ### Release Notes <details> <summary>Boshen/criterion2.rs (criterion2)</summary> ### [`v3.0.0`](https://redirect.github.com/Boshen/criterion2.rs/releases/tag/v3.0.0) [Compare Source](https://redirect.github.com/Boshen/criterion2.rs/compare/v2.0.0...v3.0.0) ##### Other - Make filters to look for a substring unless exact is given ([#​65](https://redirect.github.com/Boshen/criterion2.rs/pull/65)) - *(deps)* update rust crates ([#​64](https://redirect.github.com/Boshen/criterion2.rs/pull/64)) - *(deps)* update rust crate serde_json to 1.0.132 ([#​63](https://redirect.github.com/Boshen/criterion2.rs/pull/63)) - *(deps)* update dependency rust to v1.82.0 ([#​62](https://redirect.github.com/Boshen/criterion2.rs/pull/62)) - *(deps)* update rust crate bpaf to 0.9.15 ([#​61](https://redirect.github.com/Boshen/criterion2.rs/pull/61)) - *(deps)* update rust crate futures to 0.3.31 ([#​60](https://redirect.github.com/Boshen/criterion2.rs/pull/60)) - *(deps)* update rust crate tempfile to 3.13.0 ([#​59](https://redirect.github.com/Boshen/criterion2.rs/pull/59)) - *(deps)* update rust crates ([#​57](https://redirect.github.com/Boshen/criterion2.rs/pull/57)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNzYuMiIsInVwZGF0ZWRJblZlciI6IjM5LjE3Ni4yIiwidGFyZ2V0QnJhbmNoIjoiY2FuYXJ5IiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==-->
66 lines
2.0 KiB
TOML
66 lines
2.0 KiB
TOML
[workspace]
|
|
members = [
|
|
"./packages/backend/native",
|
|
"./packages/common/native",
|
|
"./packages/frontend/mobile-native",
|
|
"./packages/frontend/native",
|
|
"./packages/frontend/native/nbstore",
|
|
"./packages/frontend/native/schema",
|
|
"./packages/frontend/native/sqlite_v1",
|
|
]
|
|
resolver = "3"
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
affine_common = { path = "./packages/common/native" }
|
|
affine_nbstore = { path = "./packages/frontend/native/nbstore" }
|
|
anyhow = "1"
|
|
base64-simd = "0.8"
|
|
block2 = "0.6"
|
|
chrono = "0.4"
|
|
core-foundation = "0.10"
|
|
coreaudio-rs = "0.12"
|
|
criterion2 = { version = "3", default-features = false }
|
|
dispatch2 = "0.2"
|
|
dotenvy = "0.15"
|
|
file-format = { version = "0.26", features = ["reader"] }
|
|
homedir = "0.3"
|
|
libc = "0.2"
|
|
mimalloc = "0.1"
|
|
mp3lame-encoder = "0.2"
|
|
napi = { version = "3.0.0-alpha.31", features = ["async", "chrono_date", "error_anyhow", "napi9", "serde"] }
|
|
napi-build = { version = "2" }
|
|
napi-derive = { version = "3.0.0-alpha.28" }
|
|
notify = { version = "8", features = ["serde"] }
|
|
objc2 = "0.6"
|
|
objc2-foundation = "0.3"
|
|
once_cell = "1"
|
|
parking_lot = "0.12"
|
|
rand = "0.9"
|
|
rayon = "1.10"
|
|
rubato = "0.16"
|
|
screencapturekit = "0.3"
|
|
serde = "1"
|
|
serde_json = "1"
|
|
sha3 = "0.10"
|
|
sqlx = { version = "0.8", default-features = false, features = ["chrono", "macros", "migrate", "runtime-tokio", "sqlite", "tls-rustls"] }
|
|
symphonia = { version = "0.5", features = ["all", "opt-simd"] }
|
|
thiserror = "2"
|
|
tiktoken-rs = "0.6"
|
|
tokio = "1.37"
|
|
uniffi = "0.29"
|
|
uuid = "1.8"
|
|
v_htmlescape = "0.15"
|
|
y-octo = { git = "https://github.com/y-crdt/y-octo.git", branch = "main" }
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 3
|
|
strip = "symbols"
|