-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (49 loc) · 1.51 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
[package]
name = "blackboards"
version = "0.1.0"
authors = ["Alexander Jackson <alexanderjackson@protonmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.159", features = ["derive"] }
dotenv = "0.15.0"
rand = "0.8.5"
chrono = "0.4.24"
url = "2.3.1"
itertools = "0.10.5"
either = "1.8.1"
base64 = "0.13.1"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
[dependencies.rocket]
git = "https://github.com/SergioBenitez/Rocket"
branch = "master"
features = ["secrets"]
[dependencies.rocket_dyn_templates]
git = "https://github.com/SergioBenitez/Rocket"
branch = "master"
features = ["tera"]
[dependencies.rocket_db_pools]
git = "https://github.com/SergioBenitez/Rocket"
branch = "master"
features = ["sqlx_postgres"]
[dependencies.sqlx]
version = "0.5.13"
features = ["chrono", "json", "macros", "offline", "postgres", "runtime-tokio-rustls", "uuid"]
[dependencies.lettre]
version = "0.10.4"
default-features = false
features = ["builder", "smtp-transport", "tokio1", "tokio1-rustls-tls"]
[dependencies.oauth]
version = "0.5.1"
package = "oauth1-request"
[dependencies.reqwest]
version = "0.11.16"
default-features = false
features = ["rustls-tls"]
[dependencies.tallystick]
git = "https://github.com/alexander-jackson/tallystick"
branch = "stable-compiler"
[dev-dependencies]
tokio = { version = "1.27.0", features = ["rt", "macros"] }
uuid = { version = "0.8.2", features = ["v4"] }