forked from 1fpga/firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (54 loc) · 1.62 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
[workspace]
resolver = "2"
members = [
"src/bk2-format",
"src/cyclone-v",
"src/de10-nano",
"src/fce-movie-format",
"src/firmware",
"src/firmware-script",
"src/firmware-ui",
"src/games-db-converter",
"src/one-fpga",
"src/mister-fpga",
"src/taser",
]
[profile.release]
lto = true
overflow-checks = false
panic = "abort"
strip = true
debug = false
[profile.dev]
overflow-checks = false
debug = 0
panic = "abort"
[workspace.lints.rust]
unused_crate_dependencies = "warn"
[workspace.dependencies]
image = "0.25"
ouroboros = "0.18"
reqwest = { version = "0.12", features = ["blocking", "json", "rustls-tls"], default-features = false }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "2.0.3"
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log"] }
time = { version = "0.3", features = ["local-offset"] }
url = { version = "2.5" }
# Repo crates
bk2-format = { path = "src/bk2-format" }
cyclone-v = { path = "src/cyclone-v" }
de10-nano = { path = "src/de10-nano" }
fce-movie-format = { path = "src/fce-movie-format" }
firmware = { path = "src/firmware" }
firmware-ui = { path = "src/firmware-ui" }
firmware-script = { path = "src/firmware-script" }
one-fpga = { path = "src/one-fpga", version = "0.1.0" }
junior = { path = "src/junior" }
mister-fpga = { path = "src/mister-fpga" }
senior = { path = "src/senior" }
taser = { path = "src/taser" }
[workspace.dependencies.sdl3]
git = "https://github.com/hansl/sdl3-rs.git"
branch = "1fpga-firmware"
features = ["static-link", "build-from-source-static", "build-from-source-unix-console"]