blob: 9ad97e925753f6cef18ce2accaaad842837b6010 (
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
25
|
[package]
name = "sylt"
version = "0.1.0"
authors = ["Edvard Thörnros <edvard.thornros@gmail.com>", "Gustav Sörnäs <gustav@sornas.net>"]
edition = "2018"
[lib]
name = "sylt"
# 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" }
sylt_macro = { path = "sylt_macro" }
criterion = { version = "0.3", optional = true }
[profile.release]
lto = "thin"
debug = true
[[bench]]
name = "sylt_benchmark"
harness = false
|