-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (45 loc) · 1.41 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
[package]
name = "claw-vault"
version = "0.1.1"
edition = "2021"
authors = ["Shashank Verma <[email protected]>"]
license = "MIT"
description = "A platform to share sensitive information with desired recipients."
repository = "https://github.com/Claw-Vault/claw-vault"
readme = "README.md"
keywords = ["rsa", "xrc", "encryption", "decryption", "vault", "claw", "share"]
rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.35.1", features = ["full", "rt-multi-thread"] }
dotenv = "0.15.0"
tera = "1.19.1"
# http
axum = { version = "0.7.4", features = ["macros"] }
serde = { version = "1.0.195", features = ["derive"] }
tower-http = { version = "0.5.1", features = ["fs", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# swagger
utoipa = { version = "4.2.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "6.0.0", features = ["axum"] }
# cryptography
uuid = { version = "1.7.0", features = ["v4"] }
openssl = { version = "0.10", features = ["vendored"] }
rand = "0.8.5"
base64 = "0.21.7"
hex = "0.4.3"
xor_cryptor = "1.2.0"
#db
sea-orm = { version = "0.12", features = [
"sqlx-postgres",
"runtime-tokio-native-tls",
"macros",
] }
chrono = "0.4.31"
[profile.release]
strip = true
lto = true
[dev-dependencies]
tower = "0.4.13"
http-body-util = "0.1.0"