2019-04-28 06:24:58 -07:00
|
|
|
[package]
|
|
|
|
name = "alacritty"
|
2023-12-14 07:37:25 +01:00
|
|
|
version = "0.14.0-dev"
|
2020-02-26 19:07:59 -08:00
|
|
|
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
2019-04-28 06:24:58 -07:00
|
|
|
license = "Apache-2.0"
|
2020-12-29 20:05:19 +00:00
|
|
|
description = "A fast, cross-platform, OpenGL terminal emulator"
|
2020-08-01 01:11:24 +00:00
|
|
|
readme = "README.md"
|
2024-03-31 03:57:09 +02:00
|
|
|
homepage = "https://alacritty.org"
|
|
|
|
repository = "https://github.com/alacritty/alacritty"
|
2021-12-26 17:47:57 +01:00
|
|
|
edition = "2021"
|
2024-03-18 01:15:04 +01:00
|
|
|
rust-version = "1.70.0"
|
2019-04-28 06:24:58 -07:00
|
|
|
|
2020-07-19 14:14:31 +00:00
|
|
|
[dependencies.alacritty_terminal]
|
|
|
|
path = "../alacritty_terminal"
|
2024-05-03 21:47:41 +02:00
|
|
|
version = "0.24.1-dev"
|
2020-07-19 14:14:31 +00:00
|
|
|
|
2020-12-21 02:44:38 +00:00
|
|
|
[dependencies.alacritty_config_derive]
|
|
|
|
path = "../alacritty_config_derive"
|
2023-12-14 07:37:25 +01:00
|
|
|
version = "0.2.3-dev"
|
2020-12-21 02:44:38 +00:00
|
|
|
|
2022-08-31 22:48:38 +00:00
|
|
|
[dependencies.alacritty_config]
|
|
|
|
path = "../alacritty_config"
|
2024-01-14 18:43:03 +04:00
|
|
|
version = "0.2.1-dev"
|
2022-08-31 22:48:38 +00:00
|
|
|
|
2019-04-28 06:24:58 -07:00
|
|
|
[dependencies]
|
2023-11-03 17:19:48 -04:00
|
|
|
ahash = { version = "0.8.6", features = ["no-rng"] }
|
2023-05-16 07:41:20 +03:00
|
|
|
bitflags = "2.2.1"
|
2023-05-16 08:57:39 +03:00
|
|
|
clap = { version = "4.2.7", features = ["derive", "env"] }
|
2024-02-27 08:57:36 +04:00
|
|
|
copypasta = { version = "0.10.1", default-features = false }
|
2024-05-04 20:51:56 +04:00
|
|
|
crossfont = "0.8.0"
|
2023-10-30 03:15:07 +04:00
|
|
|
glutin = { version = "0.31.1", default-features = false, features = ["egl", "wgl"] }
|
2023-05-16 07:41:20 +03:00
|
|
|
home = "0.5.5"
|
|
|
|
libc = "0.2"
|
|
|
|
log = { version = "0.4", features = ["std", "serde"] }
|
2023-10-08 05:29:57 +02:00
|
|
|
notify = "6.1.1"
|
2022-08-10 16:48:46 +04:00
|
|
|
parking_lot = "0.12.0"
|
2023-10-21 22:56:20 +04:00
|
|
|
raw-window-handle = "0.5"
|
2023-05-16 07:41:20 +03:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2023-10-08 05:29:57 +02:00
|
|
|
serde_yaml = "0.9.25"
|
|
|
|
toml = "0.8.2"
|
2020-07-09 21:45:22 +00:00
|
|
|
unicode-width = "0.1"
|
2024-05-04 20:51:56 +04:00
|
|
|
winit = { version = "0.30.0", default-features = false, features = ["rwh_05", "serde"] }
|
2019-04-28 06:24:58 -07:00
|
|
|
|
2019-05-03 19:48:25 -04:00
|
|
|
[build-dependencies]
|
2019-11-23 20:08:52 +03:00
|
|
|
gl_generator = "0.14.0"
|
2019-05-03 19:48:25 -04:00
|
|
|
|
2022-01-04 19:25:26 +01:00
|
|
|
[dev-dependencies]
|
2023-05-16 08:57:39 +03:00
|
|
|
clap_complete = "4.2.3"
|
2022-01-04 19:25:26 +01:00
|
|
|
|
2019-05-10 11:36:16 +00:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2023-05-16 07:41:20 +03:00
|
|
|
xdg = "2.5.0"
|
2019-05-10 11:36:16 +00:00
|
|
|
|
2019-10-05 02:29:26 +02:00
|
|
|
[target.'cfg(not(target_os = "macos"))'.dependencies]
|
2022-08-10 16:48:46 +04:00
|
|
|
png = { version = "0.17.5", default-features = false, optional = true }
|
2019-10-05 02:29:26 +02:00
|
|
|
|
2020-07-11 20:03:09 +03:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2023-10-08 05:29:57 +02:00
|
|
|
cocoa = "0.25.0"
|
2020-07-11 20:03:09 +03:00
|
|
|
objc = "0.2.2"
|
|
|
|
|
2019-04-28 06:24:58 -07:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-05-16 07:41:20 +03:00
|
|
|
dirs = "5.0.1"
|
2024-05-04 20:51:56 +04:00
|
|
|
windows-sys = { version = "0.52", features = [
|
2022-09-30 13:49:02 +02:00
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_System_Console",
|
|
|
|
"Win32_Foundation",
|
|
|
|
]}
|
2019-04-28 06:24:58 -07:00
|
|
|
|
2019-11-30 00:11:43 -06:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2023-10-08 05:29:57 +02:00
|
|
|
embed-resource = "2.2.0"
|
2019-11-30 00:11:43 -06:00
|
|
|
|
2019-04-28 06:24:58 -07:00
|
|
|
[features]
|
2020-11-06 17:33:02 +00:00
|
|
|
default = ["wayland", "x11"]
|
2022-11-03 19:37:54 +03:00
|
|
|
x11 = [
|
|
|
|
"copypasta/x11",
|
|
|
|
"winit/x11",
|
|
|
|
"glutin/x11",
|
|
|
|
"glutin/glx",
|
2023-10-08 05:29:57 +02:00
|
|
|
"png",
|
|
|
|
]
|
2022-08-10 16:48:46 +04:00
|
|
|
wayland = [
|
|
|
|
"copypasta/wayland",
|
|
|
|
"glutin/wayland",
|
2022-11-03 19:37:54 +03:00
|
|
|
"winit/wayland",
|
|
|
|
"winit/wayland-dlopen",
|
2023-02-02 11:30:23 +03:00
|
|
|
"winit/wayland-csd-adwaita-crossfont",
|
2023-10-08 05:29:57 +02:00
|
|
|
]
|
2019-04-28 06:24:58 -07:00
|
|
|
nightly = []
|