-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (43 loc) · 1.45 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
[package]
name = "brag-server"
version = "0.1.0"
edition = "2021"
about = """A gateway to brag-worthy developer productivity metrics. \
Harness the power of data-driven insights from your registered git \
repositories to showcase your achievements. Let your code do the bragging!"""
description = "`brag-server` is a web server API written in Rust that retrieves data and metrics of git repositories."
license-file = "LICENSE"
homepage = "https://github.com/cwnt-io/brag-server"
repository = "https://github.com/cwnt-io/brag-server"
keywords = ["api", "git", "projects", "server", "rest"]
categories = ["parsing", "parser-implementations", "web-programming"]
[package.metadata.release]
allow-branch = ["master","staging", "develop"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
axum = "0.6.20"
serde = { version = "1.0.192", features = ["derive"] }
tokio = { version = "1.33.0", features = ["full"] }
tower-http = { version = "0.4.4", features = ["cors"] }
toml = "0.8.8"
cmd_lib = "1.9.0"
reqwest = "0.11.22"
serde_json = "1.0.108"
chrono = { version = "0.4.31", features = ["serde"] }
url = "2.5.0"
validator = { version = "0.16.1", features = ["validator_derive", "derive"] }
[dependencies.sqlx]
version = "0.7.2"
features = [
"runtime-tokio",
"tls-rustls",
"json",
"postgres",
"macros",
"migrate",
"chrono"
]
[[bin]]
name = "load_db"
path = "src/bin/load_db.rs"