-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (37 loc) · 913 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
[package]
name = "digital-garden"
description = "A tool for authoring and syncing digital gardens"
version = "0.1.0"
authors = ["Christopher Biscardi <chris@christopherbiscardi.com>"]
edition = "2018"
license = "MIT"
readme = "./README.md"
keywords = ["garden", "digital"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "garden"
path = "src/main.rs"
[lib]
name = "digital_garden"
path = "src/lib.rs"
[dependencies]
directories = "3.0.1"
color-eyre = "0.5.6"
tracing = "0.1.21"
structopt = "0.3.19"
edit = "0.1.2"
rprompt = "1.0.5"
slug = "0.1.4"
owo-colors = "1.1.3"
serde = "1.0.116"
tempfile = "3.1.0"
walkdir = "2.3.1"
pulldown-cmark = "0.8.0"
syntect = "4.5.0"
dialoguer = "0.7.1"
console = "0.13.0"
minus = { version = "2.1.0", features = ["static_output"] }
[dev-dependencies]
assert_fs = "1.0.0"
escargot = "0.5.0"
assert_cmd = "1.0.1"