-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (31 loc) · 948 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
[package]
name = "sidetree"
version = "0.10.0"
authors = ["Tobias Pisani <topisani@hamsterpoison.com>"]
edition = "2018"
description = "TUI file tree for usage with terminal text editors"
license = "MIT"
homepage = "https://github.com/topisani/sidetree"
[dependencies]
tui = { version = "0.19.0", default-features = false, features = ["termion"]}
termion = "1.5.6"
unicode-width = "0.1.9"
serde = { version = "1.0.144", features = ["derive"] }
combine = "4.6.6"
clap = { version = "3.2.17", features = ["derive"] }
xdg = "2.4.1"
path-absolutize = "3.0.13"
lazy_static = "1.4.0"
toml = "0.5.9"
syn = "1.0.99"
quote = "1.0.21"
proc-macro2 = "1.0.43"
tui-textarea = { version = "0.2.0", default-features = false, features = ["termion"] }
# https://stackoverflow.com/questions/65813638/how-to-use-proc-macro-in-normal-module
[lib]
name = "config_macros"
path = "src/config_macros.rs"
proc-macro = true
[[bin]]
name = "sidetree"
path = "src/main.rs"