33 lines
713 B
TOML
33 lines
713 B
TOML
|
[package]
|
||
|
name = "emuladoor"
|
||
|
version = "0.1.0"
|
||
|
authors = ["lifning"]
|
||
|
edition = "2021"
|
||
|
|
||
|
[patch.'https://cybre.tech/lifning/ferretro.git']
|
||
|
ferretro_base = { path = "../ferretro/ferretro_base" }
|
||
|
ferretro_components = { path = "../ferretro/ferretro_components" }
|
||
|
|
||
|
[dependencies.ferretro_components]
|
||
|
git = "https://cybre.tech/lifning/ferretro.git"
|
||
|
branch = "liffy/sdl2surf"
|
||
|
|
||
|
[dependencies.anime_telnet]
|
||
|
git = "https://github.com/alisww/anime-over-ansi"
|
||
|
|
||
|
[dependencies.tokio]
|
||
|
version = "1"
|
||
|
features = ["sync"]
|
||
|
|
||
|
[dependencies]
|
||
|
structopt = "0.3"
|
||
|
terminal_size = "0.1"
|
||
|
sdl2 = "0.35"
|
||
|
|
||
|
# must match the versions in anime_telnet:
|
||
|
image = "0.23"
|
||
|
fast_image_resize = "0.4.0"
|
||
|
|
||
|
[features]
|
||
|
static = ["ferretro_components/static"]
|