-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (37 loc) · 1009 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]
name = "petscan_rs"
version = "0.1.0"
authors = ["Magnus Manske <magnusmanske@googlemail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "*"
regex = "1"
lazy_static = "1"
chrono = "*"
config = "*"
serde_json = "*"
url = "*"
rayon = "*"
htmlescape = "*"
rand = "*"
mysql_async = { version = "*", features = ["tracing"] }
reqwest = { version = "*", features = ["json"] }
time = "^0.3"
percent-encoding = "*"
async-trait = "*"
wikimisc = { git = "https://github.com/magnusmanske/wikimisc" }
tokio = { version = "^1", features = ["macros", "fs", "sync"] }
tokio-util = "*"
hyper = { version = "^1", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
futures = "*"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
tracing = "0.1.40"
[profile.release]
lto = "fat"
codegen-units = 1
#target-cpu = "native"
panic = "abort"
#strip = "debuginfo"