-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (64 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
78 lines (64 loc) · 1.47 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
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "memory-sync"
description = "Cross-AI-tool prompt synchronisation"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
[[bin]]
name = "memory-sync"
path = "src/main.rs"
[dependencies]
tnmsc = { path = "cli" }
[workspace]
resolver = "2"
members = [
"xtask",
"sdk",
"cli",
"cli/integrate-tests",
"cli/local-tests",
"mcp",
"mcp/integrate-tests",
"gui/src-tauri",
]
[workspace.package]
version = "2026.10425.10151"
edition = "2024"
rust-version = "1.88"
license = "AGPL-3.0-only"
authors = ["TrueNine"]
repository = "https://github.com/TrueNine/memory-sync"
[workspace.dependencies]
# Internal crates
tnmsd = { path = "sdk" }
# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = { version = "1.0.149", features = ["preserve_order"] }
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"
# 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