-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
46 lines (38 loc) · 1.32 KB
/
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
43
44
45
46
[workspace]
members = ["agon-light-emulator-debugger", "agon-ez80-emulator", "agon-cli-emulator"]
[workspace.package]
version = "0.9.85"
edition = "2021"
authors = ["Tom Morton <[email protected]>"]
license = "GPL-3.0"
[package]
name = "fab-agon-emulator"
keywords = ["Agon Light", "Agon Console8", "emulator"]
homepage = "https://github.com/tomm/fab-agon-emulator"
repository = "https://github.com/tomm/fab-agon-emulator"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[build-dependencies]
# system-deps does platform searches for dependencies and sets -L and -l appropriately
system-deps = "6.2.0"
[package.metadata.system-deps.'cfg(not(target_os = "windows"))']
sdl2 = "0.36.0"
[dependencies]
sdl2-sys = "*"
sdl2 = "0.36.0"
pico-args = "0.5.0"
agon-ez80-emulator = { workspace = true }
agon-light-emulator-debugger = { workspace = true }
libloading = "0.8.0"
home = "0.5.9"
serialport = "4.3.0"
[target.'cfg(target_os = "macos")'.dependencies]
sdl2 = { version = "0.36.0", features = ["bundled", "static-link"] }
[target.'cfg(target_os = "linux")'.dependencies]
raw_tty = "0.1.0"
[workspace.dependencies]
agon-ez80-emulator = { path = "agon-ez80-emulator" }
agon-light-emulator-debugger = { path = "agon-light-emulator-debugger" }
agon-cli-emulator = { path = "agon-cli-emulator" }