summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 002c67847b22fe7a2c8e28013584461536a1f14f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "toaster"
version = "2.0.1"
edition = "2021"

[dependencies]
vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.1.2" }
markdown = { git = "git://benbridle.com/markdown", tag = "v3.3.3" }
recipe = { git = "git://benbridle.com/recipe", tag = "v1.4.0" }
log = { git = "git://benbridle.com/log", tag = "v2.0.0" }
switchboard = { git = "git://benbridle.com/switchboard", tag = "v2.1.0" }
highlight = { git = "git://benbridle.com/highlight", tag = "v1.0.2" }

chrono = "0.4.43"

[profile.release]
lto=true
opt-level="s"
debug=false
strip=true
codegen-units=1