mirror of
https://gitlab.com/ArkHost/HelixNotes.git
synced 2026-07-23 23:35:57 +02:00
52 lines
1.6 KiB
TOML
52 lines
1.6 KiB
TOML
[package]
|
|
name = "helixnotes"
|
|
version = "1.2.9"
|
|
description = "Local markdown note-taking app"
|
|
authors = ["HelixNotes"]
|
|
license = "AGPL-3.0-or-later"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["protocol-asset", "tray-icon", "image-png"] }
|
|
tauri-plugin-log = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
log = "0.4"
|
|
notify = "8"
|
|
walkdir = "2"
|
|
chrono = { version = "0.4", features = ["serde", "unstable-locales"] }
|
|
sys-locale = "0.3"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tantivy = "0.22"
|
|
gray_matter = "0.2"
|
|
tokio = { version = "1", features = ["full"] }
|
|
dirs = "6"
|
|
regex = "1"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "stream", "rustls-tls", "blocking"] }
|
|
futures = "0.3"
|
|
rayon = "1"
|
|
quick-xml = "0.36"
|
|
urlencoding = "2"
|
|
sha2 = "0.10"
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
|
|
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-single-instance = "2"
|
|
tauri-plugin-window-state = "2"
|
|
arboard = { version = "3", features = ["image-data", "wayland-data-control"] }
|
|
png = "0.17"
|
|
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp", "gif"] }
|