You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neovide/Cargo.toml

65 lines
1.8 KiB
TOML

[package]
5 years ago
name = "neovide"
version = "0.5.0"
authors = ["keith <keith@the-simmons.net>"]
edition = "2018"
5 years ago
build = "build.rs"
description = "A simple GUI for Neovim."
[features]
default = ["embed-fonts"]
embed-fonts = []
[dependencies]
euclid = "0.20.7"
font-kit = "0.6.0"
skribo = { git = "https://github.com/linebender/skribo" }
lru = "0.4.3"
skulpin = { git = "https://github.com/j4qfrost/skulpin", branch = "update-macos-deps", features = ["skulpin_sdl2"] }
derive-new = "0.5"
rmpv = "0.4.4"
rust-embed = { version = "5.2.0", features = ["debug-embed"] }
5 years ago
image = "0.22.3"
nvim-rs = { git = "https://github.com/kethku/nvim-rs", features = [ "use_tokio" ] }
tokio = { version = "0.2.9", features = [ "blocking", "process", "time" ] }
async-trait = "0.1.18"
lazy_static = "1.4.0"
5 years ago
unicode-segmentation = "1.6.0"
log = "0.4.8"
flexi_logger = { version = "0.14.6", default-features = false }
anyhow = "1.0.26"
parking_lot="0.10.0"
cfg-if = "0.1.10"
4 years ago
[dev-dependencies]
mockall = "0.7.0"
rand = "0.7"
4 years ago
5 years ago
[target.'cfg(windows)'.dependencies]
winapi = "0.3.8"
5 years ago
[build-dependencies]
winres = "0.1.11"
sdl2-sys = { version = "0.33", default-features = false, features = ["bundled", "static-link"] }
# [patch.crates-io]
# sdl2 = { git = "https://github.com/Rust-SDL2/rust-sdl2", default-features = false }
5 years ago
[profile.release]
debug = true
lto = true
incremental = true
[package.metadata.bundle]
name = "Neovide"
identifier = "com.kethku.neovide"
icon = ["assets/nvim.ico"]
version = "0.4.0"
resources = []
copyright = "Copyright (c) keith 2020. All rights reserved."
category = "Productivity"
short_description = "A simple GUI for Neovim."
long_description = """
This is a simple graphical user interface for Neovim. Where possible there are some graphical improvements, but it should act functionally like the terminal UI.
"""