-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 889 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
35
36
37
38
39
[package]
name = "cupido"
version = "0.3.5"
edition = "2021"
description = "Explore your codebase with graph view."
license = "Apache-2.0"
homepage = "https://github.com/williamfzc/cupido"
[dependencies]
git2 = "0.18.1"
petgraph = "0.6.4"
tokio = { version = "1", features = ["full"] }
axum = "0.7.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_derive = "1.0.195"
lazy_static = "1.4.0"
tracing = "0.1"
tracing-subscriber = "0.3"
regex = "1.10.2"
clap = { version = "4.4.18", features = ["derive"] }
indicatif = "0.17.8"
# for cross: https://github.com/cross-rs/cross/wiki/FAQ#openssl-is-not-installed
[features]
default = []
vendored-openssl = ["git2/vendored-openssl"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "my"
harness = false
[[bin]]
edition = "2021"
name = "cupido"
path = "src/main.rs"