-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
36 lines (32 loc) · 846 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
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "cicero"
version = "0.4.0"
edition = "2018"
authors = ["Yan Li <eyeplum@gmail.com>"]
license = "GPLv3"
description = "A Unicode tool with terminal user interface"
readme = "README.md"
homepage = "https://github.com/eyeplum/cicero-tui"
repository = "https://github.com/eyeplum/cicero-tui"
keywords = ["cli", "tui", "unicode"]
categories = ["command-line-utilities"]
[dependencies]
clap = "2.33"
crossterm = "0.20"
dirs = "3.0.1"
freetype-rs = "0.26"
hex-slice = "0.1"
scopeguard = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.4.2"
walkdir = "2"
[dependencies.tui]
version = "0.9"
default-features = false
features = ["crossterm"]
[dependencies.unic]
git = "https://github.com/eyeplum/rust-unic.git"
branch = "develop"
[target.'cfg(not(windows))'.dependencies]
servo-fontconfig = "0.5"