forked from stumpapp/stump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (54 loc) · 1.41 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
[workspace]
resolver = "2"
members = [
"apps/desktop/src-tauri",
"apps/server",
"core",
"crates/*",
]
[workspace.package]
version = "0.0.4"
rust-version = "1.77.2"
[workspace.dependencies]
async-trait = "0.1.80"
async-stream = "0.3.5"
bcrypt = "0.15.1"
futures = "0.3.30"
futures-util = "0.3.30"
lettre = { version = "0.11.4", default-features = false, features = [
"builder",
"hostname",
"smtp-transport",
"tracing",
"tokio1-rustls-tls",
] }
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.3", default-features = false, features = [ "json", "rustls-tls" ] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
simple_crypt = "0.2.3"
specta = "1.0.5"
tempfile = "3.10.1"
thiserror = "1.0.58"
tokio = { version = "1.37.0", 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",
] }
tracing = "0.1.40"
urlencoding = "2.1.3"