-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
40 lines (36 loc) · 901 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
40
[package]
edition = "2021"
name = "vercel-tokei"
version = "0.1.0"
[dependencies]
cached = { version = "0.54.0", features = ["async"] }
eyre = "0.6.12"
git2 = "0.20.0"
gix = { version = "0.70.0", features = [
"blocking-http-transport-reqwest-native-tls",
] }
http = "1.1.0"
lazy-regex = "3.3.0"
markdown = "1.0.0-alpha.22"
percent-encoding = "2.3.1"
reqwest = "0.12.12"
rsbadges = { git = "https://github.com/aschey/rsbadges", rev = "ee99a301ac9b22063464989610ed033af48856ee" }
serde_json = "1.0.139"
strum = "0.27.1"
strum_macros = "0.27.1"
tempfile = "3.17.1"
tokei = "12.1.2"
tokio = { version = "1.43.0", features = ["macros"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.18"
url = "2.5.3"
urlencoding = "2.1.3"
vercel_runtime = "1.1.4"
[lib]
path = "src-rs/lib.rs"
[[bin]]
name = "tokei"
path = "api/tokei/[domain]/[user]/[repo].rs"
[[bin]]
name = "tokei-default"
path = "api/tokei.rs"