-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 860 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
37
38
39
[package]
name = "ox"
version = "0.2.7"
authors = ["Curlpipe <[email protected]>"]
edition = "2018"
description = "A Rust powered text editor."
homepage = "https://github.com/curlpipe/ox"
repository = "https://github.com/curlpipe/ox"
readme = "README.md"
include = ["src/*.rs", "Cargo.toml"]
categories = ["text-editors"]
keywords = ["text-editor", "editor", "terminal", "tui"]
license = "GPL-2.0"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[dependencies]
unicode-segmentation = "1.6.0"
unicode-width = "0.1.8"
clap = "2.33.3"
shellexpand = "2.0.0"
ron = "0.6.2"
serde = "1.0.117"
regex = "1.4.2"
directories = "3.0.1"
crossterm = "0.18.2"
term = "0.6.1"
[package.metadata.rpm]
package = "ox"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
ox = { path = "/usr/bin/ox" }