-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
44 lines (36 loc) · 905 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
[package]
name = "writing"
version = "0.2.1"
authors = [ "Phodal Huang <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/inherd/writing"
documentation = "https://github.com/inherd/writing"
homepage = "https://github.com/inherd/writing"
description = """
Writing, is a simple tool for code-document sync.
"""
categories = ["text-processing", "command-line-interface", "development-tools"]
exclude = [
".coco/*",
"benchmark/*",
"fixtures/*",
"targets/*",
".github/*",
".gitattributes",
".adr.json",
]
[dependencies]
pulldown-cmark = { version = "0.8", default-features = false }
pest = "2.1.3"
pest_derive = "2.1.0"
thiserror = "1.0"
clap = "3.0.0-beta.5"
tree-sitter-javascript = "=0.19.0"
tree-sitter = "=0.19.3"
guarding_core = "0.2.6"
guarding_ident = "0.2.6"
[[bin]]
name = "writing"
path = "src/bin/writing.rs"