-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (51 loc) · 1.4 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
[package]
name = "vinoteca"
description = "Wine purchase tracker"
repository = "https://github.com/threecgreen/vinoteca"
version = "6.2.12"
edition = "2021"
authors = ["Carter Green <[email protected]>"]
readme = "./README.md"
license = "MIT"
default-run = "vinoteca"
categories = ["web-programming"]
[dependencies]
# Password encryption
bcrypt = "0.14.0"
# Datetime functionality
chrono = { version = "0.4.24", features = ["serde"] }
# basic ORM
diesel = { version = "1.4.8", features = ["postgres", "chrono"] }
diesel_migrations = "1.4.0"
# Image handling
image = "0.24.6"
kamadak-exif = "0.5.5"
lazy_static = "1.4.0"
log = "0.4.17"
rocket_codegen = "0.4.11"
rocket-multipart-form-data = "0.9.6"
# AWS S3 access
rust-s3 = { version = "0.32.3", features = ["blocking"] }
# (De)serialization
serde = { version = "1.0.159", features = ["derive"] }
serde_json = "1.0.95"
time = "0.1.45"
uuid = { version = "1.3.0", features = ["v4"] }
# Input validation
validator = "0.16.0"
validator_derive = "0.16.0"
[dependencies.rocket]
version = "0.4.11"
default-features = false
features = ["private-cookies"]
[dependencies.rocket_contrib]
version = "0.4.11"
default-features = false
features = ["json", "diesel_postgres_pool"]
# Generate typescript type definitions from rust structs
[dependencies.typescript-definitions]
version = "0.1.10"
# Enable export in release build
features = ["export-typescript"]
[dev-dependencies]
mockall = "0.11.4"