2023-12-17 11:53:26 -07:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-term"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2024-01-29 09:47:06 -07:00
|
|
|
rust-version = "1.71"
|
2023-12-17 11:53:26 -07:00
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-31 12:50:54 +03:00
|
|
|
alacritty_terminal = "0.20"
|
2023-12-18 13:54:08 -07:00
|
|
|
env_logger = "0.10"
|
2023-12-22 14:31:01 -07:00
|
|
|
lazy_static = "1"
|
2024-01-11 23:22:39 +03:00
|
|
|
indexmap = "2"
|
2023-12-18 13:54:08 -07:00
|
|
|
log = "0.4"
|
2023-12-22 14:31:01 -07:00
|
|
|
serde = { version = "1", features = ["serde_derive"] }
|
|
|
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
|
# Internationalization
|
|
|
|
|
i18n-embed = { version = "0.13", features = ["fluent-system", "desktop-requester"] }
|
|
|
|
|
i18n-embed-fl = "0.6"
|
|
|
|
|
rust-embed = "6"
|
2024-01-10 01:19:04 +03:00
|
|
|
paste = "1.0"
|
2024-01-12 01:41:37 +03:00
|
|
|
palette = "0.7"
|
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
|
|
|
|
|
features = ["tokio", "winit"]
|
2023-12-18 13:54:08 -07:00
|
|
|
|
|
|
|
|
[features]
|
2023-12-20 13:31:10 -07:00
|
|
|
default = ["wgpu"]
|
|
|
|
|
wgpu = ["libcosmic/wgpu"]
|
2023-12-21 09:05:59 -07:00
|
|
|
|
|
|
|
|
[patch.crates-io]
|
2024-01-03 10:09:41 -07:00
|
|
|
# https://github.com/rust-lang/libc/pull/3512
|
|
|
|
|
libc = { git = "https://gitlab.redox-os.org/redox-os/liblibc.git", branch = "redox_0.2.151" }
|
2023-12-21 09:05:59 -07:00
|
|
|
smithay-client-toolkit = { git = "https://github.com/pop-os/client-toolkit", branch = "wayland-resize" }
|
2024-02-03 12:11:24 -07:00
|
|
|
# https://github.com/gfx-rs/wgpu/pull/4959
|
|
|
|
|
wgpu = { git = "https://github.com/pop-os/wgpu", branch = "v0.18" }
|
2023-12-21 09:05:59 -07:00
|
|
|
|
|
|
|
|
[profile.release-with-debug]
|
|
|
|
|
inherits = "release"
|
|
|
|
|
debug = true
|
2023-12-22 14:31:01 -07:00
|
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
fork = "0.1"
|