summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 54f97f92ff774e06d512c08af6df4074ef0b6d21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "bedrock-asm"
version = "1.0.0"
authors = ["Ben Bridle"]
edition = "2024"
description = "Assembler for the Bedrock assembly language"

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

indexmap = "2.7.1"

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