-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (33 loc) · 916 Bytes
/
Cargo.toml
File metadata and controls
43 lines (33 loc) · 916 Bytes
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
[package]
name = "gitrends"
version = "1.0.0"
edition = "2021"
authors = ["Anton Jansson <anton_jansson@live.se>"]
description = "Web-based behavior code analysis tool"
license = "MIT"
homepage = "https://github.com/svenslaggare/gitrends"
[package.metadata.deb]
assets = [
["target/release/gitrends", "usr/bin/gitrends", "755"],
["frontend/static/**/*", "etc/gitrends/static", "644"]
]
[dependencies]
thiserror = "2"
chrono = { version = "0.4", features=["serde"] }
arc-swap = "1"
log = "0.4"
fern = "0.7"
git2 = "0.20"
regex = "1"
glob = "0.3"
serde = { version = "1", features=["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tokio = { version = "1", features = ["full"] }
parquet = "54"
parquet_derive = "54"
datafusion = "46"
axum = { version = "0.8", features = ["multipart"] }
tower-http = { version = "0.6", features = ["fs"] }
askama = "0.13"
clap = { version = "4", features = ["derive"] }