2020-12-10 00:00:23 +03:00
|
|
|
[package]
|
|
|
|
name = "wezterm-input-types"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
2024-01-27 22:13:39 +03:00
|
|
|
edition = "2021"
|
|
|
|
repository = "https://github.com/wez/wezterm"
|
|
|
|
description = "config serialization for wezterm via dynamic json-like data values"
|
|
|
|
license = "MIT"
|
2020-12-10 00:00:23 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2021-08-16 04:21:17 +03:00
|
|
|
bitflags = "1.3"
|
2020-12-10 21:03:16 +03:00
|
|
|
euclid = "0.22"
|
2022-01-02 07:34:43 +03:00
|
|
|
lazy_static = "1.4"
|
2023-04-14 00:18:13 +03:00
|
|
|
serde = {version="1.0", features = ["rc", "derive"], optional=true}
|
2024-01-27 22:13:39 +03:00
|
|
|
wezterm-dynamic = {path="../wezterm-dynamic", version="0.2"}
|
2023-04-14 00:18:13 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["serde"]
|