-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (33 loc) · 1003 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
[package]
name = "rezoning-scraper"
version = "3.2.0"
edition = "2021"
[dependencies]
anyhow = "1.0.94"
base64 = "0.22.1"
chrono = "0.4.39"
clap = { version = "4.5.23", features = ["derive", "env"] }
scraper = "0.22.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rusqlite = { version = "0.32.0", features = ["bundled"] }
reqwest = { version = "0.12.9", features = ["json"] }
indicatif = "0.17.8"
colored = "2.2.0"
tokio = { version = "1", features = ["full"] }
bsky-sdk = "0.1.14"
atrium-api = "0.24.9"
html2md = "0.2.14"
genai = "=0.1.15"
itertools = "0.13.0"
sentry = { version = "0.35.0", features = ["anyhow"] }
image = "0.25.5"
# Force vendored OpenSSL on Linux to make building for musl easier
[target.'cfg(target_os = "linux")'.dependencies]
openssl = { version = "0.10", features = ["vendored"]}
# build with `cargo build --profile profiling`
# to analyze performance with tooling like linux perf
[profile.profiling]
inherits = "release"
strip = false
debug = true