aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ddafc761905582a3895d94a5347fb9eca0b9f7eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "tihdy"
version = "0.1.0"
authors = ["Edvard Thörnros <edvard.thornros@gmail.com>"]
edition = "2018"

[lib]
name = "tihdy"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
logos = "0.11.4"
owo-colors = { git="https://github.com/FredTheDino/owo-colors.git" }

criterion = { version = "0.3", optional = true }

[profile.release]
debug = true
lto = "thin"

[[bench]]
name = "tihdy_benchmark"
harness = false