-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Cargo.toml
73 lines (71 loc) · 2.11 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"apps/desktop/src-tauri",
"apps/server",
"core",
"crates/*",
]
[workspace.package]
version = "0.0.9"
rust-version = "1.81.0"
[workspace.dependencies]
async-trait = "0.1.81"
async-stream = "0.3.5"
base64 = "0.22.1"
bcrypt = "0.15.1"
derive_builder = "0.20.0"
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3.30"
futures-util = "0.3.30"
infer = "0.16.0"
itertools = "0.13.0"
keyring = { version = "3.4.0", features = ["apple-native", "windows-native", "sync-secret-service"] }
lettre = { version = "0.11.4", default-features = false, features = [
"builder",
"hostname",
"smtp-transport",
"tracing",
"tokio1-rustls-tls",
] }
md5 = "0.7.0"
once_cell = "1.19.0"
prefixed-api-key = { version = "0.3.0", features = ["sha2"] }
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust.git", tag = "0.6.11", features = [
"sqlite-create-many",
"migrations",
"sqlite",
"mocking"
], default-features = false }
prisma-client-rust-cli = { git = "https://github.com/Brendonovich/prisma-client-rust.git", tag = "0.6.11", features = [
"sqlite-create-many",
"migrations",
"sqlite",
"mocking"
], default-features = false }
rand = "0.8.5"
reqwest = { version = "0.12.7", default-features = false, features = [ "json", "rustls-tls" ] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde_with = "3.8.1"
simple_crypt = "0.2.3"
specta = { version = "1.0.5", features = ["chrono", "url"] }
tempfile = "3.12.0"
thiserror = "1.0.63"
tokio = { version = "1.41.1", features = [
# Provides sender/reciever channels
"sync",
# Tells the Tokio runtime to use the multi-thread scheduler.
"rt-multi-thread",
# Allows handling shutdown signals (e.g., ctrl+c)
"signal",
] }
toml = "0.8.19"
tracing = "0.1.40"
urlencoding = "2.1.3"
# Required for macro crates
proc-macro2 = "1.0.87"
quote = "1.0.37"
syn = "2.0.79"
# Note: We need to keep this downgraded for the time being. See https://github.com/stumpapp/stump/issues/427#issuecomment-2332857700
zip = { version = "=1.1.3", features = ["deflate"], default-features = false }