-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (55 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
60 lines (55 loc) · 1.64 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
[package]
name = "hermod-api"
version = "0.1.2"
edition = "2018"
readme = "README.md"
license = "MIT"
description = "Rapid and seamless customer interaction, designed for CS 495 at The University of Alabama."
homepage = "https://hermodapp.com"
repository = "https://github.com/hermodapp/api"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.12.0-beta"
actix-web = "4.0.0-beta.3"
tokio = "1.10.1"
serde-aux = "2.3.0"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "0.8", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0.67"
anyhow = "1.0.43"
base64 = "0.13"
thiserror = "1.0.29"
config = { version = "0.11.0", default-features = false, features = ["yaml"] }
argon2 = { version = "0.3", features = ["std"] }
rand = { version = "0.8", features= ["std_rng"] }
tracing = "0.1.26"
tracing-bunyan-formatter = "0.2.5"
tracing-log = "0.1.2"
tracing-subscriber = "0.2.20"
actix-cors = "0.6.0-beta.2"
jsonwebtoken = "7.2.0"
opentelemetry = { version = "0.16", features=["rt-tokio"] }
opentelemetry-otlp = { version = "0.9"}
tracing-opentelemetry = "0.15.0"
tracing-actix-web = "0.4.0-beta.15"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
urlencoding = "2.1.0"
[dependencies.sqlx]
version="0.5.7"
default-features = false
features = [
"runtime-actix-rustls",
"macros",
"postgres",
"uuid",
"chrono",
"migrate",
"offline"
]
[dev-dependencies]
actix-rt = "2.0.2"
once_cell = "1.7.2"
wiremock = "0.5"
[package.metadata.wasm-pack.profile.release]
wasm-opt = false