-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
31 lines (26 loc) · 816 Bytes
/
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
[package]
name = "dos-like"
version = "0.4.1-alpha.0"
description = "Framework for writing DOS-like applications"
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
keywords = ["dos", "vga", "opl", "ms-dos"]
categories = ["external-ffi-bindings", "game-development", "graphics"]
repository = "https://github.com/Enet4/dos-like-rs"
readme = "README.md"
license-file = "LICENSE.md"
exclude = ["assets/*", "screenshot.png"]
edition = "2021"
[dependencies]
dos-like-sys = { path = "dos-like-sys/", version = "0.3.1-alpha.0" }
lazy_static = "1.4.0"
smallvec = "1.8.0"
[features]
default = []
disable-screen-frame = ["dos-like-sys/disable-screen-frame"]
disable-system-cursor = ["dos-like-sys/disable-system-cursor"]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
lto = "thin"
strip = "debuginfo"