-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 957 Bytes
/
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
[package]
name = "muservice"
version = "0.1.0"
authors = ["Vagmi Mudumbai <[email protected]>"]
edition = "2021"
[lib]
name = "libmuservice"
path = "src/lib.rs"
[[bin]]
name = "muservice"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = {version="1.20.1", features=["full"]}
sqlx = {version="0.6.1", features=["runtime-tokio-rustls", "postgres", "migrate"]}
hyper = {version = "0.14.8", features=["client"]}
color-eyre = "0.6.2"
tracing-error = "0.2.0"
serde_json = "1.0.83"
serde = {version = "1.0.143", features=["derive"]}
config = {version = "0.13.2", features=["json"]}
lazy_static = "1.4.0"
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "tracing-log"] }
axum = "0.6.0"
tower-http = {version="0.3.4", features=["trace", "cors"]}
tower = "0.4.13"
http = "0.2.8"
[profile.dev.package.backtrace]
opt-level = 3