-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
28 lines (26 loc) · 841 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "strop"
version = "0.2.0"
authors = ["Sam M W <[email protected]>"]
edition = "2021"
description = "stochastically generates machine code"
license = "MIT"
repository = "https://github.com/omarandlorraine/strop"
homepage = "https://github.com/omarandlorraine/strop"
[features]
default = ["armv4t", "m6502", "m6809", "z80"]
armv4t = ["armv4t_emu", "unarm"]
m6502 = ["mos6502"]
m6809 = ["emu6809"]
z80 = ["iz80", "dez80"]
m68k = ["m68000"]
[dependencies]
armv4t_emu = { version = "0.1.0", optional = true }
m68000 = { version = "0.2.1", optional = true }
rand = "0.8.5"
unarm = { version = "=1.6.7", optional = true }
emu6809 = { version = "0.1.2", optional = true }
iz80 = { version = "0.4.1", optional = true }
mos6502 = {version = "0.6.0", optional = true }
dez80 = { version = "4.0.1", optional = true }
bitmatch = "0.1.1"