You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
436 B
24 lines
436 B
[package] |
|
name = "rom-emulator" |
|
version = "0.1.0" |
|
edition = "2021" |
|
|
|
[dependencies] |
|
bitflags = "2.8.0" |
|
env_logger = "0.11.6" |
|
futures = "0.3.31" |
|
lazy_static = "1.5.0" |
|
log = "0.4.25" |
|
rand = "0.8.5" |
|
sdl2 = "0.37.0" |
|
serde = "1.0.217" |
|
serde_json = "1.0.135" |
|
tokio = { version = "1.43.0", features = ["full"] } |
|
tokio-stream = "0.1.17" |
|
tokio-tungstenite = "0.26.1" |
|
uuid = "1.12.0" |
|
warp = "0.3.7" |
|
|
|
[[bin]] |
|
name = "rom-emulator" |
|
path = "main.rs"
|
|
|