cosmic-text/examples/editor-libcosmic/Cargo.toml
Jeremy Soller ee54e7626b
Vi-style editor and other editor improvements (#40)
* WIP VI wrapper for editor

* WIP: block cursor

* Create Edit trait, run CI on all feature options

* Add prints describing build steps to ci.sh

* Custom rendering for Vi editor

* Clippy fixes

* More clippy fixes

* Show clippy results in CI

* Fix for Redox

* Fix clippy lint

* Add vi feature to enable vi-style editor

* Add escape to libcosmic text box
2022-11-15 12:26:59 -07:00

29 lines
596 B
TOML

[package]
name = "editor-libcosmic"
version = "0.1.0"
authors = ["Jeremy Soller <jeremy@system76.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[dependencies]
cosmic-text = { path = "../../", features = ["syntect"] }
env_logger = "0.9"
fontdb = "0.9"
lazy_static = "1.4"
log = "0.4"
[dependencies.libcosmic]
git = "https://github.com/pop-os/libcosmic"
branch = "cosmic-design-system"
#path = "../../../libcosmic"
[dependencies.rfd]
version = "0.10"
#TODO: iced portal
#default-features = false
#features = ["xdg-portal"]
[features]
default = []
vi = ["cosmic-text/vi"]