-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (43 loc) · 1.05 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
44
45
46
47
48
49
50
51
52
[package]
name = "duat"
version = "0.2.1"
authors = ["AhoyISki"]
description = "A Highly customizable text editor, configured through the use of a rust crate."
homepage = "https://github.com/AhoyISki/duat"
license = "AGPL-3.0-or-later"
readme = "README.md"
keywords = ["editor", "text", "application", "duat"]
categories = ["command-line-utilities", "text-editors", "config"]
include = ["src/", "config/", "build.rs"]
edition = "2021"
[workspace]
members = [
"duat-core",
"duat-kak",
"duat-term",
]
exclude = [ "testing" ]
[dependencies]
duat-core = { version = ">=0.2.1", path = "duat-core" }
# List of UIs.
duat-term = { version = ">=0.2.1", path = "duat-term", optional = true }
atomic-wait = "1.1.0"
dirs-next = "2.0.0"
libloading = "0.8.1"
notify = "6.1.1"
[features]
default = ["term-ui"]
term-ui = ["dep:duat-term"]
wack = ["duat-core/wack"]
deadlocks = ["duat-core/deadlocks"]
[[bin]]
name = "duat"
path = "src/main.rs"
[lib]
name = "duat"
path = "src/lib.rs"
[build-dependencies]
dirs-next = "2.0.0"
[profile.profiling]
inherits = "release"
debug = true