forked from Peltoche/vixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (43 loc) · 932 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
authors = ["Peltoche <dev@halium.fr>"]
build = "build.rs"
edition = "2018"
name = "vixi"
version = "0.1.0"
[[bin]]
name = "vixi"
path = "src/main.rs"
[build-dependencies]
clap = "2.32.0"
version_check = "0.1.3"
[features]
tracing = ["xi-trace"]
[dependencies]
chrono = "0.4.6"
dirs = "1.0.5"
failure = "0.1.5"
fern = "0.5.7"
lazy_static = "1.3.0"
log = "0.4.6"
serde = "1.0.89"
serde_derive = "1.0"
serde_json = "1.0"
termion = "1.5.1"
toml = "0.5.0"
backtrace = "0.3"
[dependencies.clap]
features = ["suggestions", "color", "wrap_help"]
version = "2.32.0"
[dependencies.xi-core-lib]
branch = "master"
git = "https://github.com/xi-editor/xi-editor"
[dependencies.xi-rpc]
branch = "master"
git = "https://github.com/xi-editor/xi-editor"
[dependencies.xi-trace]
branch = "master"
git = "https://github.com/xi-editor/xi-editor"
features = ["chrome_trace_event"]
optional = true
[workspace]
members = ["./plugins/*"]