-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (28 loc) · 1.07 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
[package]
name = "yggoxide"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Serde
serde_json = "1.0.81"
iso8601-timestamp = { version = "0.1.11", features = ["schema"] }
uuid = { version = "1.1.2", features = ["serde", "v4"] }
serde = { version = "1.0.137", features = [ "derive" ] }
# Encoding
base64 = "0.13.0"
# Rocket
rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"] }
rocket_empty = { git = "https://github.com/insertish/rocket_empty", branch = "master" }
# Schemas
rocket_okapi = { git = "https://github.com/insertish/okapi", rev = "a1048d0c8cd771e424ec97d33d825c32e06aa120", features = [ "swagger" ] }
okapi = { git = "https://github.com/insertish/okapi", rev = "a1048d0c8cd771e424ec97d33d825c32e06aa120" }
schemars = { version = "0.8.8" }
# Encryption
rsa = "0.6.1"
rand = "0.8.5"
pem-rfc7468 = "0.3.1" # Locked at 0.3.1 for a reason
[dev-dependencies]
reqwest = { version = "0.11.11", features = ["json"] }
dashmap = "5.3.4"
nanoid = "0.4.0"