keyboard input has changed a lot in iced, but I think I've made the proper adjustments here. vertical splits don't seem to work, but that didn't seem to work before either. Also, there is a black border on the right and bottom of the first tab of the terminal. I'm not sure why yet, but it seems like it is probably related to the scrollbar
50 lines
1.2 KiB
TOML
50 lines
1.2 KiB
TOML
[package]
|
|
name = "cosmic-term"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.71"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
alacritty_terminal = "0.20"
|
|
env_logger = "0.10"
|
|
lazy_static = "1"
|
|
indexmap = "2"
|
|
log = "0.4"
|
|
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"
|
|
paste = "1.0"
|
|
palette = "0.7"
|
|
|
|
[dependencies.smol_str]
|
|
version = "0.2.1"
|
|
features = ["serde"]
|
|
|
|
[dependencies.cosmic-text]
|
|
git = "https://github.com/pop-os/cosmic-text.git"
|
|
features = ["shape-run-cache"]
|
|
|
|
[dependencies.libcosmic]
|
|
git = "https://github.com/pop-os/libcosmic.git"
|
|
default-features = false
|
|
features = ["tokio", "winit"]
|
|
|
|
[features]
|
|
default = ["wgpu"]
|
|
wgpu = ["libcosmic/wgpu"]
|
|
|
|
[patch.crates-io]
|
|
# https://github.com/rust-lang/libc/pull/3512
|
|
libc = { git = "https://gitlab.redox-os.org/redox-os/liblibc.git", branch = "redox_0.2.151" }
|
|
|
|
[profile.release-with-debug]
|
|
inherits = "release"
|
|
debug = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
fork = "0.1"
|