-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 949 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "pir-8-emu"
description = "Implementation of the pir-8 ISA"
documentation = "https://rawcdn.githack.com/LoungeCPP/pir-8-emu/doc/pir_8_emu/index.html"
repository = "https://github.com/LoungeCPP/pir-8-emu"
homepage = "https://github.com/thecoshman/pir-8"
readme = "README.md"
keywords = ["isa", "emulation", "cpu"]
categories = ["emulators"]
license = "MIT"
# Remember to also update in appveyor.yml
version = "2.0.2"
# Remember to also update in man/*.md
authors = ["nabijaczleweli <[email protected]>"]
exclude = ["*.enc"]
build = "build.rs"
[dependencies]
bear-lib-terminal = "2.0"
tinyfiledialogs = "3.3"
downcast-rs = "1.0"
lazy_static = "1.3"
arraydeque = "0.4"
const-cstr = "0.3"
num-traits = "0.2"
dlopen = "0.1"
clap = "2.33"
dirs = "2.0"
libc = "0.2"
time = "0.1"
toml = "0.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies]
rand = "0.7"
[build-dependencies]
embed-resource = "1.2"