forked from georgik/rustzx-esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
67 lines (54 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "rustzx-esp32"
version = "0.2.0"
authors = ["georgik"]
edition = "2018"
categories = ["embedded", "hardware-support"]
keywords = ["embedded", "idf", "esp-idf", "esp32", "zx"]
description = "Emulation of Spectrum ZX on the ESP32"
repository = "https://github.com/georgik/rustzx-esp32"
license = "MIT OR Apache-2.0"
readme = "README.md"
[profile.dev]
# symbols are nice and they don't increase the size on Flash
debug = true
opt-level = "z"
#[profile.release]
#opt-level = "s"
[features]
default = [ "esp32_ili9341" ]
# Enable this feature in case you have a ESP32 ILI9341 board
esp32_ili9341 = []
# Enable this feature in case you have a ESP32C3 ILI9341 board
esp32c3_ili9341 = []
# Enable this feature in case you have a Kaluga ILI9341 board
kaluga_ili9341 = []
# Enable this feature in case you have a Kaluga ST7789 board
kaluga_st7789 = []
# Enable this feature in case you have a TTGO board
ttgo = []
# Enable this feature in case you have a Heltec board
heltec = []
# Enable this feature in case you have an ESP32S2-USB-OTG preview board
esp32s2_usb_otg = []
# Enable this feature in case you have an ESP32S3-USB-OTG board
esp32s3_usb_otg = []
[dependencies]
anyhow = {version = "1", features = ["backtrace"]}
log = "0.4"
esp-idf-sys = { version = "0.31.0", features = ["binstart"] }
esp-idf-svc = "0.41.3"
esp-idf-hal = "0.37.4"
embedded-svc = "0.21.2"
embedded-hal = "0.2"
embedded-graphics = "0.7"
display-interface = "0.4"
display-interface-spi = "0.4"
st7789 = "0.6"
ili9341 = { version = "0.5", git = "https://github.com/yuri91/ili9341-rs" }
ssd1306 = "0.7"
rustzx-utils = { version = "0.15", features = ["std"] }
rustzx-core = { version = "0.15", features = ["embedded-roms"] }
[build-dependencies]
embuild = "0.29.1"
anyhow = "1.0.50"