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