summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: de49c5067a63a72987efedb56cd51486034e2f0d (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 = "bedrock-asm"
version = "4.0.6"
authors = ["Ben Bridle"]
edition = "2021"
description = "Assembler program for the Bedrock assembly language"


[dependencies]
assembler = { git = "git://benbridle.com/assembler", tag = "v2.2.0" }
log = { git = "git://benbridle.com/log", tag = "v1.1.2" }
vagabond = { git = "git://benbridle.com/vagabond", tag = "v1.0.1" }
xflags = "0.4.0-pre"


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