mirror of
https://github.com/henrikpersson/potatis.git
synced 2025-04-02 10:32:09 -04:00
16 lines
No EOL
373 B
TOML
16 lines
No EOL
373 B
TOML
[package]
|
|
name = "mos6502"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
getch = "0.3.1"
|
|
common = { path = "../common" }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
common = { path = "../common" }
|
|
|
|
[lib]
|
|
doctest = false |