-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (41 loc) · 1.3 KB
/
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
[package]
name = "starsector"
version = "1.0.1"
authors = ["Alex Roper <alex@aroper.net>"]
edition = "2021"
description = "Org mode structural parser/emitter with an emphasis on modularity and avoiding edits unrelated to changes."
license = "MIT"
repository = "https://github.com/calmofthestorm/starsector"
readme = "README.md"
keywords = ["orgmode", "parser", "emacs"]
[features]
default = ["headline-parser", "orgize-integration"]
# Parses and emits keywords, tags, priority, comment, and title.
headline-parser = ["regex", "lazy_static", "nom", "chrono"]
# Uses Orgize to parse the properties and planning line.
orgize-integration = ["orgize", "headline-parser", "indexmap"]
[dependencies]
chrono = { version = "0.4", optional = true }
hex = "0.4"
indexmap = { version = "1.9", optional = true}
indextree = "4.5"
iobuffer = "0.2"
itertools = "0.10"
lazy_static = { version = "1.4", optional = true}
log = "0.4"
memchr = "2.5"
nom = { version = "7.1", optional = true }
orgize = { version = "0.9", optional = true, features = ["chrono", "indexmap"]}
rand = "0.7.2"
regex = {version = "1.6", optional = true}
ropey = "1.5"
[dev-dependencies]
orgize = { version = "0.9", features = ["chrono", "indexmap"]}
rand = "0.7.2"
walkdir = "2.3"
[[example]]
name = "deltatest"
test = true
[[example]]
name = "tester"
test = true