2023-12-17 11:53:26 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-term"
|
|
|
|
|
version = "0.1.0"
|
2024-02-28 08:45:45 -07:00
|
|
|
authors = ["Jeremy Soller <jeremy@system76.com>"]
|
2023-12-17 11:53:26 -07:00
|
|
|
edition = "2021"
|
2024-02-28 08:45:45 -07:00
|
|
|
license = "GPL-3.0-only"
|
2024-01-29 09:47:06 -07:00
|
|
|
rust-version = "1.71"
|
2023-12-17 11:53:26 -07:00
|
|
|
|
2024-02-27 21:20:00 -07:00
|
|
|
[build-dependencies]
|
|
|
|
|
vergen = { version = "8", features = ["git", "gitcl"] }
|
2023-12-17 11:53:26 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-04-05 16:35:17 +02:00
|
|
|
alacritty_terminal = "0.23"
|
2023-12-18 13:54:08 -07:00
|
|
|
env_logger = "0.10"
|
2024-02-22 09:55:46 -07:00
|
|
|
hex_color = { version = "3", features = ["serde"] }
|
2024-01-11 23:22:39 +03:00
|
|
|
indexmap = "2"
|
2024-02-22 09:55:46 -07:00
|
|
|
lazy_static = "1"
|
2024-02-09 15:45:46 -07:00
|
|
|
lexical-sort = "0.3.1"
|
2023-12-18 13:54:08 -07:00
|
|
|
log = "0.4"
|
2024-02-28 09:15:58 -07:00
|
|
|
open = "5.0.2"
|
2024-02-22 09:55:46 -07:00
|
|
|
palette = { version = "0.7", features = ["serde"] }
|
2024-02-28 08:45:45 -07:00
|
|
|
paste = "1.0"
|
2024-02-22 09:55:46 -07:00
|
|
|
ron = "0.8"
|
2024-05-17 08:58:23 -06:00
|
|
|
serde = { version = "1", features = ["serde_derive"] }
|
2024-02-09 15:45:46 -07:00
|
|
|
shlex = "1"
|
2023-12-22 14:31:01 -07:00
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
|
# Internationalization
|
2024-02-28 08:45:45 -07:00
|
|
|
i18n-embed = { version = "0.14", features = ["fluent-system", "desktop-requester"] }
|
|
|
|
|
i18n-embed-fl = "0.7"
|
|
|
|
|
rust-embed = "8"
|
2023-12-17 17:49:39 -07:00
|
|
|
|
2024-02-22 09:55:46 -07:00
|
|
|
[dependencies.cosmic-files]
|
2024-02-28 08:45:45 -07:00
|
|
|
git = "https://github.com/pop-os/cosmic-files.git"
|
2024-02-22 09:55:46 -07:00
|
|
|
default-features = false
|
2024-02-05 14:18:19 -05:00
|
|
|
|
2023-12-17 17:49:39 -07:00
|
|
|
[dependencies.cosmic-text]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-text.git"
|
2024-02-08 11:28:41 -07:00
|
|
|
features = ["shape-run-cache"]
|
2023-12-18 13:54:08 -07:00
|
|
|
|
2023-12-20 13:31:10 -07:00
|
|
|
[dependencies.libcosmic]
|
2024-01-22 16:40:38 +01:00
|
|
|
git = "https://github.com/pop-os/libcosmic.git"
|
2023-12-20 13:31:10 -07:00
|
|
|
default-features = false
|
2024-02-22 09:55:46 -07:00
|
|
|
features = ["multi-window", "tokio", "winit"]
|
|
|
|
|
|
|
|
|
|
[dependencies.smol_str]
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
features = ["serde"]
|
2023-12-18 13:54:08 -07:00
|
|
|
|
2024-02-28 08:45:45 -07:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
fork = "0.1"
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["wgpu"]
|
|
|
|
|
wgpu = ["libcosmic/wgpu", "cosmic-files/wgpu"]
|
|
|
|
|
|
2023-12-21 09:05:59 -07:00
|
|
|
[profile.release-with-debug]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
debug = true
|
2024-05-06 15:21:28 -06:00
|
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
|
# https://github.com/rust-lang/libc/pull/3686
|
|
|
|
|
libc = { git = "https://gitlab.redox-os.org/redox-os/liblibc.git", branch = "redox-epoll-0.2" }
|