-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (33 loc) · 1.27 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
[package]
name = "wallowa"
authors = ["Greg Unrein"]
version = "0.4.0"
description = "A tool for measuring aspects of your Software Development Life Cycle (SDLC)."
license = "MIT"
repository = "/~https://github.com/gunrein/wallowa"
edition = "2021"
[dependencies]
anyhow = "1.0"
arrow = { version = "47", default-features = false, features = ["ipc"] }
axum = "0.6"
axum-extra = { version = "0.8", features = ["query"] }
chrono = { version = "0.4", features = ["clock", "serde"], default-features = false }
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help", "color"] }
config = "0.13"
dotenvy = "0.15"
futures = "0.3"
inquire = "0.6"
mime_guess = "2.0"
minijinja-autoreload = "1"
minijinja = { version = "1", features = ["unicode", "loader"] }
parse_link_header = "0.3"
reqwest = { version = "0.11", features = ["json"] }
rust-embed = { version = "8", features = ["tokio", "mime-guess"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1", features = ["rt-multi-thread", "net", "macros", "signal", "fs"] }
tower-http = { version = "0.4", features = ["trace", "compression-full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
wallowa-duckdb = { path = "wallowa-duckdb" }