-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
24 lines (22 loc) · 884 Bytes
/
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
[package]
name = "mininotes"
version = "0.2.0"
edition = "2021"
authors = ["Dimas Leenman"]
description = "A small terminal text editor"
repository = "https://github.com/Dimev/mininotes"
license = "MIT"
keywords = ["text", "cli", "editor", "unicode", "terminal"]
exclude = ["target", "Cargo.lock"]
readme = "README.md"
categories = ["command-line-interface", "command-line-utilities"]
[dependencies]
cfg-if = "1.0.0"
clap = { version = "4.4.18", features = ["derive"] }
crossterm = "0.27.0"
ropey = "1.6.1"
unicode-segmentation = "1.10.1"
unicode-width = "0.1.11"
# bleh (These operating systems are supported by arboard)
[target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux", target_os = "freebsd", target_os = "dragonfly", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
arboard = { version = "3.3.0", features = ["wayland-data-control"] }