34 lines
722 B
TOML
34 lines
722 B
TOML
[package]
|
|
name = "cosmic-text-editor"
|
|
version = "0.1.0"
|
|
authors = ["Jeremy Soller <jeremy@system76.com>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-only"
|
|
|
|
[dependencies]
|
|
env_logger = "0.9"
|
|
fontdb = "0.9"
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|
|
|
|
[dependencies.cosmic-text]
|
|
git = "https://github.com/pop-os/cosmic-text"
|
|
rev = "fedeeea9d307093fac880802e17e107b456e5de9"
|
|
features = ["syntect"]
|
|
|
|
[dependencies.libcosmic]
|
|
git = "https://github.com/pop-os/libcosmic"
|
|
rev = "a8ce524baa58f4fb2db2e26a5fc0899b63d688b5"
|
|
default-features = false
|
|
features = ["winit"]
|
|
#path = "../libcosmic"
|
|
|
|
[dependencies.rfd]
|
|
version = "0.10"
|
|
#TODO: iced portal
|
|
#default-features = false
|
|
#features = ["xdg-portal"]
|
|
|
|
[features]
|
|
default = []
|
|
vi = ["cosmic-text/vi"]
|