mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 19:26:43 +01:00
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "uw8"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["native", "browser"]
|
|
native = ["wasmtime", "minifb", "cpal", "rubato", "winapi" ]
|
|
browser = ["warp", "tokio", "tokio-stream", "webbrowser"]
|
|
|
|
[dependencies]
|
|
wasmtime = { version = "0.37.0", optional = true }
|
|
anyhow = "1"
|
|
minifb = { version = "0.22", default-features = false, features = ["x11"], optional = true }
|
|
notify = "4"
|
|
pico-args = "0.4"
|
|
curlywas = { git = "https://github.com/exoticorn/curlywas.git", rev = "0e7ea50" }
|
|
wat = "1"
|
|
uw8-tool = { path = "uw8-tool" }
|
|
same-file = "1"
|
|
warp = { version = "0.3.2", optional = true }
|
|
tokio = { version = "1.17.0", features = ["sync", "rt"], optional = true }
|
|
tokio-stream = { version = "0.1.8", features = ["sync"], optional = true }
|
|
webbrowser = { version = "0.6.0", optional = true }
|
|
ansi_term = "0.12.1"
|
|
cpal = { version = "0.13.5", optional = true }
|
|
rubato = { version = "0.11.0", optional = true }
|
|
winapi = { version = "0.3.9", features = ["timeapi"], optional = true }
|