-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
55 lines (52 loc) · 1.39 KB
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
49
50
51
52
53
54
55
[package]
name = "roast"
version = "1.0.0"
edition = "2024"
description = "A JVM Data Crawler"
authors = ["Roland Schär (@roele)"]
repository = "https://github.com/jdx/mise-java"
readme = "README.md"
license = "MIT"
keywords = ["java", "jvm", "crawler", "database", "cli"]
categories = ["command-line-utilities"]
include = [
"src/**/*.rs",
"/Cargo.lock",
"/LICENSE",
"/README.md",
]
build = "build.rs"
[[bin]]
name = "roast"
path = "src/main.rs"
[dependencies]
build-time = "0.1"
chrono = { version = "0.4", default-features = false, features = ["clock", "serde", "std"] }
clap = { version = "4", features = ["derive", "env", "string"] }
color-eyre = "0.6"
color-print = "0.3"
comrak = "0.52"
confique = { version = "0.4", default-features = false, features = ["toml"] }
crossbeam-channel = "0.5"
env_logger = "0.11"
eyre = "0.6"
indoc = "2"
itertools = "0.14"
log = "0.4"
openssl = "0.10"
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
postgres-openssl = "0.5"
r2d2 = "0.8"
r2d2_postgres = "0.18"
rayon = "1"
regex = "1"
reqwest = { version = "0.13", features = ["blocking", "gzip", "json", "zstd"] }
scraper = "0.26"
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
shellexpand = "3"
tokio = { version = "1", features = ["full", "rt"] }
versions = { version = "7", features = ["serde"] }
xx = "2"
[build-dependencies]
built = { version = "0.8", features = ["chrono"] }