-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (68 loc) · 2.26 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (68 loc) · 2.26 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
[workspace]
resolver = "3"
members = [
"apps/chat2db-cli",
"apps/chat2db-desktop",
"apps/chat2db-mcp",
"apps/chat2db-web",
"crates/chat2db-agent",
"crates/chat2db-contract",
"crates/chat2db-core",
"crates/chat2db-engine-protocol",
"crates/chat2db-java-bridge",
"crates/chat2db-local",
"crates/chat2db-local-ipc-windows",
"crates/chat2db-storage",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
authors = ["OtterMind"]
license-file = "LICENSE"
repository = "https://github.com/OtterMind/Chat2DB-Rust"
[workspace.dependencies]
aes-gcm = { version = "0.10.3", features = ["std", "zeroize"] }
async-trait = "0.1"
axum = "0.8.9"
base64 = "0.22.1"
bytes = "1"
chrono = "0.4.45"
clap = { version = "4.5", features = ["derive"] }
directories = "6.0"
eventsource-stream = "0.2.3"
fs2 = "0.4"
futures-util = "0.3"
http-body-util = "0.1"
keyring = { version = "3.6.3", default-features = false }
mysql_async = { version = "=0.37.0", default-features = false, features = ["default-rustls-ring"] }
prost = "0.14"
rand = "0.9.2"
reqwest = { version = "0.12.24", default-features = false, features = ["json", "rustls-tls", "stream"] }
rmcp = { version = "=2.2.0", default-features = false, features = ["server", "macros", "transport-io"] }
rusqlite = { version = "0.37", features = ["bundled"] }
rustix = { version = "1", features = ["fs", "process"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha2 = "0.10"
subtle = "2.6"
tauri = { version = "=2.8.5", default-features = false }
tauri-build = "=2.4.1"
thiserror = "2"
tokio = { version = "1", features = ["io-std", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7.16", features = ["rt"] }
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.7", features = ["fs", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
utoipa = { version = "5.5.0", features = ["axum_extras"] }
utoipa-axum = "0.2.0"
url = "2"
uuid = { version = "1.18", features = ["v4"] }
zeroize = "1.8"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"