piss/Cargo.toml

32 lines
758 B
TOML
Raw Permalink Normal View History

2022-10-04 05:57:50 +00:00
[package]
2022-10-04 22:43:04 +00:00
name = "pissterm"
authors = ["mars <mars@tebibyte.media>"]
repository = "https://git.tebibyte.media/mars/piss"
2022-10-04 05:57:50 +00:00
version = "0.1.0"
2022-10-04 22:06:20 +00:00
license = "AGPL-3.0-or-later"
2022-10-04 05:57:50 +00:00
edition = "2021"
2022-10-04 22:43:04 +00:00
description = "A bare-bones terminal emulator that is not meant to be taken too seriously."
2022-10-04 05:57:50 +00:00
[dependencies]
alacritty_terminal = "0.16"
2022-10-07 00:21:59 +00:00
confy = "0.5"
2022-10-04 05:57:50 +00:00
env_logger = "0.9"
2022-10-07 01:27:14 +00:00
fnv = "1.0"
2022-10-07 00:21:59 +00:00
hex_color = { version = "2", features = ["serde"] }
2022-10-04 05:57:50 +00:00
log = "0.4"
mio-extras = "2"
2022-10-07 00:21:59 +00:00
serde = { version = "1", features = ["derive"] }
2022-10-04 22:43:04 +00:00
[dependencies.bdf]
git = "https://github.com/meh/rust-bdf"
rev = "2eceb66"
[dependencies.softbuffer]
git = "https://github.com/john01dav/softbuffer"
rev = "d30d325"
[dependencies.winit]
version = "0.27"
default_features = false
features = ["x11", "wayland"]