about summary refs log tree commit diff
path: root/Cargo.toml
blob: db794bd95603e0c14adddb5fbc6c5fa9a12d85c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "whenwasit"
version = "0.1.0"
edition = "2021"
repository = "https://git.nyble.dev/smalls/whenwasit"

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

[dependencies]
camino = "1.1.6"
getopts = "0.2.21"

# takes ~250K off the binary (tested on MacOS)
[profile.release]
strip = true
codegen-units = 1
panic = "abort"
lto = true