summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 0de2f51c2cf67cccc5e3728ac78a1addb3f846b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "torque-asm"
version = "1.1.1"
edition = "2021"

[dependencies]
assembler = { git = "git://benbridle.com/assembler", tag = "v2.0.1" }
log = { git = "git://benbridle.com/log", tag = "v1.1.2" }
switchboard = { git = "git://benbridle.com/switchboard", tag = "v1.0.0" }

paste = "1.0.15"
indexmap = "2.7.1"

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