-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (35 loc) · 934 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
[package]
name = "zkt"
version = "0.0.3"
description = "A note-taking tool based on the famous Zettelkasten method"
authors = ["Liam <[email protected]>"]
license = "CC0-1.0"
homepage = "https://github.com/terror/zk"
repository = "https://github.com/terror/zk"
edition = "2018"
categories = ["command-line-utilities"]
keywords = ["command-line", "productivity", "note-taking", "utility"]
resolver = "2"
[[bin]]
name = "zk"
path = "src/main.rs"
[dependencies]
chrono = "0.4.19"
colored = "2.0.0"
dirs = "4.0.0"
indoc = "1.0.3"
matter = "0.1.0-alpha4"
serde_yaml = "0.8.23"
shellexpand = "2.1.0"
skim = "0.9.4"
snafu = "0.6.10"
structopt = "0.3.25"
toml = "0.5.8"
walkdir = "2.3.2"
xdg = "2.4.0"
[dependencies.serde]
version = "1.0.132"
features = ["derive"]
[dev-dependencies]
pretty_assertions = "1.0.0"
tempfile = "3.2.0"