-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (55 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
67 lines (55 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[workspace]
resolver = "2"
members = [
"sdk",
"cli",
"libraries/logger",
"libraries/md-compiler",
"libraries/script-runtime",
"gui/src-tauri",
]
[workspace.package]
version = "2026.10402.110"
edition = "2024"
rust-version = "1.88"
license = "AGPL-3.0-only"
authors = ["TrueNine"]
repository = "https://github.com/TrueNine/memory-sync"
[workspace.dependencies]
# Internal crates
tnmsc = { path = "sdk" }
tnmsc-logger = { path = "libraries/logger" }
tnmsc-md-compiler = { path = "libraries/md-compiler" }
tnmsc-script-runtime = { path = "libraries/script-runtime" }
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yml = "0.0.12"
# CLI
clap = { version = "4.6.0", features = ["derive"] }
# Filesystem & system
dirs = "6.0.0"
glob = "0.3.3"
# Crypto & encoding
sha2 = "0.11.0"
base64 = "0.22.1"
# HTTP
reqwest = { version = "0.13.2", features = ["blocking", "json"] }
# Markdown / MDX
markdown = "1.0.0"
# NAPI-RS (Node.js native addon bindings)
napi = { version = "3.8.4", features = ["napi4"] }
napi-derive = "3.5.3"
napi-build = "2.3.1"
# Tauri
tauri = { version = "2.10.3", features = ["tray-icon"] }
tauri-build = { version = "2.5.6", features = [] }
tauri-plugin-shell = "2"
tauri-plugin-updater = "2"
# JSON5 (for GUI log parsing compat)
json5 = "1.3.1"
[profile.release]
strip = true
lto = true
opt-level = "z"
codegen-units = 1