-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "omega"
version = "0.4.3"
repository = "https://github.com/nwrenger/omega"
documentation = "https://github.com/nwrenger/omega"
readme = "README.md"
authors = ["nils@wrenger.net"]
description = "A performant terminal-based project editor with extensive shortcuts"
license = "MIT"
edition = "2021"
keywords = ["editor", "file", "project", "shortcuts", "tool"]
categories = ["command-line-utilities", "text-editors"]
rust-version = "1.67.1"
[profile.release]
lto = "thin"
opt-level = 3
codegen-units = 1
strip = true
[dependencies]
arboard = "3.3.2"
cursive-syntect = "0.2.0"
cursive_tree_view = "0.9.0"
syntect = "5.2.0"
unicode-segmentation = "1.11.0"
unicode-width = "0.1.11"
cursive = "0.21.1"
# cursive dependency cross plattform
# [target.'cfg(target_os = "macos")'.dependencies.cursive]
# version = "0.21.1"
# default-features = false
# features = ["ncurses-backend"]
# [target.'cfg(not(target_os = "macos"))'.dependencies.cursive]
# version = "0.21.1"
# default-features = false
# features = ["crossterm-backend"]