-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (77 loc) · 2.14 KB
/
Cargo.toml
File metadata and controls
80 lines (77 loc) · 2.14 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
[package]
name = "OxideChat"
version = "0.1.3"
edition = "2024"
description = "A modern, performance and on customization focused AI chat application"
license = "MIT"
repository = "https://github.com/NxtCore/OxideChat"
readme = "README.md"
keywords = ["chat", "axum", "websocket", "postgres"]
categories = ["web-programming"]
[dependencies]
axum = { version = "0.8" }
tokio = { version = "1.48", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.8", features = [
"postgres",
"chrono",
"runtime-tokio-native-tls",
"migrate",
"uuid",
"rust_decimal",
] }
dotenv = { version = "0.15" }
argon2 = { version = "0.5" }
uuid = { version = "1.0", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
tower-cookies = { version = "0.11" }
arc-swap = "1.7.1"
oauth2 = "5"
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
"multipart",
] }
tower-http = { version = "0.5", features = ["cors"] }
omniference = "0.1"
aes-gcm = "0.10"
rand = "0.8"
rust_decimal = { version = "1.39.0", features = ["db-postgres", "serde"] }
futures-util = "0.3.31"
async-stream = "0.3.6"
tokio-util = "0.7.17"
extism = "1"
sha2 = "0.10"
base64 = "0.22"
thiserror = "2"
async-trait = "0.1"
infer = "0.16"
[lints.clippy]
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
perf = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
must_use_candidate = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
doc_markdown = "warn"
explicit_iter_loop = "warn"
explicit_into_iter_loop = "warn"
inconsistent_struct_constructor = "warn"
manual_let_else = "warn"
redundant_closure_for_method_calls = "warn"
semicolon_if_nothing_returned = "warn"
unnested_or_patterns = "warn"
unused_self = "warn"
cargo = { level = "warn", priority = -1 }
future_not_send = "warn"
fallible_impl_from = "warn"
dbg_macro = "warn"
todo = "warn"
unimplemented = "warn"
multiple_crate_versions = "allow"
[lints.rust]
unsafe_code = "warn"
missing_docs = "allow"