cosmic-edit/Cargo.toml

65 lines
1.6 KiB
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"
2024-01-29 09:47:25 -07:00
rust-version = "1.71"
2023-02-07 13:00:49 -07:00
2024-02-28 08:57:24 -07:00
[build-dependencies]
vergen = { version = "8", features = ["git", "gitcl"] }
2023-02-07 13:00:49 -07:00
[dependencies]
2025-02-19 17:38:18 +01:00
dirs = "6"
env_logger = "0.11.6"
grep = "0.3.2"
ignore = "0.4.23"
log = "0.4.25"
notify = "6.1.1"
2025-02-19 17:38:18 +01:00
open = "5.3.2"
2023-12-01 13:19:56 -07:00
patch = "0.7.0"
2025-02-19 17:38:18 +01:00
regex = "1.11"
2023-11-03 16:16:24 -06:00
serde = { version = "1", features = ["serde_derive"] }
2023-12-01 13:19:56 -07:00
tokio = { version = "1", features = ["process", "time"] }
2023-11-21 11:57:11 -07:00
# Extra syntax highlighting
2025-02-19 17:38:18 +01:00
syntect = "5.2.0"
two-face = "0.4.3"
2023-10-30 09:34:36 -06:00
# Internationalization
icu_collator = "1.5"
icu_provider = { version = "1.5", features = ["sync"] }
2025-02-19 17:38:18 +01:00
i18n-embed = { version = "0.15", features = ["fluent-system", "desktop-requester"] }
i18n-embed-fl = "0.9"
rust-embed = "8"
2023-02-07 13:00:49 -07:00
2024-02-13 13:05:49 -07:00
[dependencies.cosmic-files]
2024-02-28 08:57:24 -07:00
git = "https://github.com/pop-os/cosmic-files.git"
2024-02-13 13:05:49 -07:00
default-features = false
[dependencies.cosmic-syntax-theme]
2024-02-28 08:57:24 -07:00
git = "https://github.com/pop-os/cosmic-syntax-theme.git"
2023-02-07 13:00:49 -07:00
[dependencies.cosmic-text]
2024-02-28 08:57:24 -07:00
git = "https://github.com/pop-os/cosmic-text.git"
features = ["syntect", "vi"]
2023-02-07 13:00:49 -07:00
[dependencies.libcosmic]
2024-02-28 08:57:24 -07:00
git = "https://github.com/pop-os/libcosmic.git"
default-features = false
2024-06-20 09:18:37 -06:00
features = ["a11y", "multi-window", "tokio", "winit"]
2023-02-07 13:00:49 -07:00
2023-11-28 12:03:30 -07:00
[target.'cfg(unix)'.dependencies]
2025-02-19 17:38:18 +01:00
fork = "0.2"
2023-11-28 12:03:30 -07:00
2023-11-15 09:06:32 -07:00
[features]
2024-02-13 13:05:49 -07:00
default = ["wgpu"]
wgpu = ["libcosmic/wgpu", "cosmic-files/wgpu"]
2023-11-15 09:06:32 -07:00
[profile.release-with-debug]
inherits = "release"
2024-06-20 09:18:37 -06:00
debug = true
2024-08-27 08:12:18 -06:00
2024-09-21 07:50:33 -06:00
# [patch.'https://github.com/pop-os/libcosmic']
# libcosmic = { path = "../libcosmic" }
# cosmic-config = { path = "../libcosmic/cosmic-config" }
2024-10-22 11:55:58 -06:00
# cosmic-theme = { path = "../libcosmic/cosmic-theme" }