mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-13 08:06:24 +08:00
3416de1e4d
#### PR Dependency Tree * **PR #14970** 👈 This tree was auto-generated by [Charcoal](https://github.com/danerwilliams/charcoal) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated TLS library dependencies with pinned version constraints across multiple packages * Removed `tls-rustls` feature from sqlx configurations in backend and frontend packages * Removed unused `sqlx` dependency from mobile native package * Refined HTTPS client configuration with embedded certificate roots and added validation test <!-- review_stack_entry_start --> [](https://app.coderabbit.ai/change-stack/toeverything/AFFiNE/pull/14970) <!-- review_stack_entry_end --> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
57 lines
1.4 KiB
TOML
57 lines
1.4 KiB
TOML
[package]
|
|
edition = "2024"
|
|
name = "affine_nbstore"
|
|
publish = false
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[features]
|
|
default = []
|
|
napi = ["affine_common/napi"]
|
|
use-as-lib = ["napi-derive/noop", "napi/noop"]
|
|
|
|
[dependencies]
|
|
affine_common = { workspace = true, features = ["ydoc-loader"] }
|
|
affine_schema = { path = "../schema" }
|
|
anyhow = { workspace = true }
|
|
bincode = { version = "2.0.1", features = ["serde"] }
|
|
chrono = { workspace = true }
|
|
memory-indexer = { workspace = true }
|
|
napi = { workspace = true }
|
|
napi-derive = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
sqlx = { workspace = true, default-features = false, features = [
|
|
"chrono",
|
|
"macros",
|
|
"migrate",
|
|
"runtime-tokio",
|
|
"sqlite",
|
|
] }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
y-octo = { workspace = true }
|
|
zstd = "0.13"
|
|
|
|
[target.'cfg(any(target_os = "ios", target_os = "android"))'.dependencies]
|
|
uniffi = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
affine_schema = { path = "../schema" }
|
|
dotenvy = { workspace = true }
|
|
napi-build = { workspace = true }
|
|
sqlx = { workspace = true, default-features = false, features = [
|
|
"chrono",
|
|
"macros",
|
|
"migrate",
|
|
"runtime-tokio",
|
|
"sqlite",
|
|
] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
|
|
[dev-dependencies]
|
|
serde_json = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|