-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
62 lines (60 loc) · 1.61 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
[workspace]
resolver = "2"
members = [
"apps/desktop/src-tauri",
"apps/server",
"core",
"crates/*",
]
[workspace.package]
version = "0.0.7"
rust-version = "1.81.0"
[workspace.dependencies]
async-trait = "0.1.81"
async-stream = "0.3.5"
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"
itertools = "0.13.0"
lettre = { version = "0.11.4", default-features = false, features = [
"builder",
"hostname",
"smtp-transport",
"tracing",
"tokio1-rustls-tls",
] }
once_cell = "1.19.0"
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.40.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",
] }
toml = "0.8.19"
tracing = "0.1.40"
urlencoding = "2.1.3"