cosmic-edit/Cargo.toml

34 lines
832 B
TOML
Raw Normal View History

2023-02-07 13:00:49 -07:00
[package]
2023-10-23 09:36:38 -06:00
name = "cosmic-edit"
2023-02-07 13:00:49 -07:00
version = "0.1.0"
authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021"
2023-02-10 07:42:05 -07:00
license = "GPL-3.0-only"
2023-02-07 13:00:49 -07:00
[dependencies]
2023-10-19 10:33:42 -06:00
env_logger = "0.10.0"
fontdb = "0.15.0"
lazy_static = "1.4.0"
log = "0.4.20"
rfd = "0.12.0"
2023-10-30 09:34:36 -06:00
# Internationalization
i18n-embed = { version = "0.13.4", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.6.4"
rust-embed = "6.3.0"
2023-02-07 13:00:49 -07:00
[dependencies.cosmic-text]
2023-03-17 18:48:56 -06:00
git = "https://github.com/pop-os/cosmic-text"
branch = "vi-editor"
features = ["syntect", "vi"]
#path = "../cosmic-text"
2023-02-07 13:00:49 -07:00
[dependencies.libcosmic]
2023-10-26 11:25:14 -06:00
git = "https://github.com/pop-os/libcosmic"
branch = "menu"
default-features = false
features = ["winit"]
2023-10-26 11:25:14 -06:00
#path = "../libcosmic"
2023-02-07 13:00:49 -07:00
[patch.crates-io]
smithay-client-toolkit = { git = "https://github.com/pop-os/client-toolkit", branch = "wayland-resize" }