-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (55 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
70 lines (55 loc) · 1.86 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
[package]
name = "api-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["prisma-cli"]
resolver = "2"
[dependencies]
# Web Frameworks and Extensions
axum = { version = "0.7.1", features = ["macros"] }
axum-extra = { version = "0.9", features = ["cookie"] }
axum-valid = { version = "0.14.0", features = ["full_validator"] }
axum_typed_multipart = "0.11.0"
tower = { version = "0.4.13", features = ["full"] }
tower-cookies = "0.10.0"
tower-http = { version = "0.5.0", features = ["trace", "cors"] }
socketioxide = "0.10.0"
# Asynchronous Programming
async-trait = "0.1.74"
tokio = { version = "1.34.0", features = ["full"] }
# HTTP and Web Clients
hyper = { version = "1.0.1", features = ["full"] }
reqwest = { version = "0.11", features = ["blocking", "json", "cookies"] }
# Serialization/Deserialization
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
uuid = { version = "1.6.1", features = ["serde", "v4"] }
# Database and ORM
dotenv = "0.15.0"
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.11" }
# Data Validation
validator = { version = "0.16", features = ["derive"] }
# API Documentation
utoipa = { version = "4.1.0", features = ["chrono", "debug", "uuid"] }
utoipa-redoc = { version = "3.0.0", features = ["axum"] }
# Utilities
anyhow = "1.0.75"
chrono = "0.4"
lazy_static = "1.4.0"
regex = "1.10.2"
thiserror = "1.0.50"
tracing = "0.1.4"
tracing-subscriber = "0.3.18"
url = "2.5.0"
# Development Tools
cargo-update = "13.3.0"
# Email
sendgrid = {version = "0.20.0", features = ["async"]}
mrml = "3.0.0"
handlebars = "5.0.0"
# Cryptography (Had to add this so it links to the correct openssl version)
openssl = { version = "0.10", features = ["vendored"] }
gcp_auth = "0.10.0"
urlencoding = "2.1.3"