-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (47 loc) · 1.19 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "aharc"
version = "0.1.0"
authors = ["Rafael Epplée <[email protected]>"]
edition = "2021"
rust-version = "1.56.0"
description = ""
# documentation = ""
# homepage = ""
repository = ""
license = "MIT"
keywords = ["aharc"]
# categories = []
publish = false # no accidents while in dev
[features]
default = []
full = []
[dependencies]
serde = { version = "1", default-features = false, features = ["serde_derive"] }
serde_json = "1.0.99"
anyhow = "1.0.71"
rayon = "1.7.0"
html-escape = "0.2.13"
askama = { version = "0.12.0", features = ["markdown"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
clap = { version = "4.3.10", features = ["derive", "env"] }
chrono = { version = "0.4.26", default-features = false, features = [
"std",
"serde",
] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
pretty_assertions = "1"
[package.metadata.cargo-udeps.ignore]
development = ["criterion", "pretty_assertions"]
[package.metadata.playground]
features = ["full"]
[profile.release]
codegen-units = 1
incremental = false
[profile.bench]
codegen-units = 1
incremental = false
[[bench]]
name = "my_benchmark"
harness = false