summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: aeb56cd2324f754673996cd92a217c5491436853 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name        = "eAS"
version     = "0.3.0"
authors     = ["Gabriel Bjørnager Jensen"]
edition     = "2021"
description = "The Embedded Assembler."
repository  = "https://mandelbrot.dk/eas"

[[bin]]
name = "eas"
path = "src/eas.rs"

[profile.release]
codegen-units = 1
lto           = "fat"

[dependencies]
enum-iterator = "1.5.0"