-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Cargo.toml
43 lines (39 loc) · 1.12 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
40
41
42
43
[workspace]
resolver = "2"
members = [
"kaolinite",
]
[package]
name = "ox"
version = "0.7.4"
edition = "2021"
authors = ["Curlpipe <[email protected]>"]
description = "A simple but flexible text editor."
homepage = "https://github.com/curlpipe/ox"
repository = "https://github.com/curlpipe/ox"
readme = "README.md"
include = ["src/*.rs", "Cargo.toml", "config/.oxrc"]
categories = ["text-editors"]
keywords = ["text-editor", "editor", "terminal", "tui"]
license = "GPL-2.0"
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/ox", dest = "/usr/bin/ox", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/ox/LICENSE", doc = true, mode = "0644" },
{ source = "README.md", dest = "/usr/share/doc/ox/README.md", doc = true, mode = "0644" }
]
#[profile.release]
#debug = true
#lto = true
#panic = "abort"
#codegen-units = 1
[dependencies]
alinio = "0.2.1"
base64 = "0.22.1"
crossterm = "0.28.1"
jargon-args = "0.2.7"
kaolinite = { path = "./kaolinite" }
mlua = { version = "0.10", features = ["lua54", "vendored"] }
error_set = "0.7"
shellexpand = "3.1.0"
synoptic = "2.2.9"