-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
90 lines (86 loc) · 3.15 KB
/
Copy pathCargo.toml
File metadata and controls
90 lines (86 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
[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"] }
aes = "0.8.4"
async-trait = "0.1"
axum = { version = "0.8.9", features = ["multipart"] }
base64 = "0.22.1"
blowfish = "0.9.1"
bytes = "1"
chrono = "0.4.45"
cbc = "0.1.2"
clap = { version = "4.5", features = ["derive"] }
csv = "1.4.0"
directories = "6.0"
eventsource-stream = "0.2.3"
fs2 = "0.4"
futures-util = "0.3"
http-body-util = "0.1"
hex = "0.4.3"
keyring = { version = "3.6.3", default-features = false }
mysql_async = { version = "=0.37.0", default-features = false, features = ["default-rustls-ring"] }
oracle-rs = "=0.1.7"
prost = "0.14"
quick-xml = "0.37.5"
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", "elicitation", "schemars"] }
rusqlite = { version = "0.37", features = ["bundled"] }
russh = { version = "0.62.5", default-features = false, features = ["ring", "rsa"] }
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustix = { version = "1", features = ["fs", "process"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sha1 = "0.10.6"
sha2 = "0.10"
sqlparser = "0.62.0"
subtle = "2.6"
tauri = { version = "=2.8.5", default-features = false }
tauri-build = "=2.4.1"
tauri-plugin-dialog = "=2.4.0"
tauri-plugin-opener = "=2.2.7"
thiserror = "2"
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "net", "process", "rt-multi-thread", "signal", "sync", "time"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-postgres = { version = "=0.7.18", features = ["with-chrono-0_4", "with-serde_json-1", "with-uuid-1"] }
tokio-postgres-rustls = { version = "=0.14.0", features = ["native-certs", "ring"] }
tokio-util = { version = "0.7.16", features = ["compat", "io", "rt"] }
tiberius = { version = "=0.12.3", default-features = false, features = ["chrono", "rustls", "tds73"] }
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"] }
xls = { version = "0.1.0", default-features = false }
zeroize = "1.8"
zip = { version = "4", default-features = false, features = ["deflate"] }
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
all = "warn"
pedantic = "warn"