dmd_core/Cargo.toml

30 lines
699 B
TOML
Raw Permalink Normal View History

2018-11-17 18:42:18 +00:00
[package]
name = "dmd_core"
2018-12-10 02:38:47 +00:00
description = "AT&T / Teletype DMD 5620 Terminal Emulator - Core Library"
2022-09-11 23:56:16 +00:00
version = "0.7.1"
2018-11-17 18:42:18 +00:00
authors = ["Seth Morabito <web@loomcom.com>"]
2018-12-10 02:38:47 +00:00
homepage = "https://github.com/sethm/dmd_core"
repository = "https://github.com/sethm/dmd_core"
readme = "README.md"
edition = "2018"
2018-12-10 02:38:47 +00:00
license = "MIT"
categories = ["simulation"]
2018-11-17 18:42:18 +00:00
[dependencies]
log = { version = "0.4.8", features = ["std"] }
env_logger = "0.9.0"
2021-04-05 15:33:49 +00:00
lazy_static = "~1.4"
libc = "~0.2"
thiserror = "1.0"
2018-12-22 01:00:43 +00:00
[profile.release]
debug = true
2018-12-22 01:00:43 +00:00
[lib]
crate-type = ["staticlib", "rlib"]
2018-12-10 02:38:47 +00:00
[badges]
2018-12-10 02:41:06 +00:00
travis-ci = { repository = "https://github.com/sethm/dmd_core", branch = "master" }
2018-12-10 02:38:47 +00:00
maintenance = { status = "actively-developed" }