-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
71 lines (66 loc) · 1.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "kak-tree"
version = "0.1.0"
authors = ["Ruslan Prokopchuk <[email protected]>"]
edition = "2018"
[dependencies]
clap = "2.33.0"
itertools = "0.8.2"
serde = { version = "1.0.104", features = ["derive"] }
slog = { version = "2.5.2", features = ["release_max_level_debug"] }
slog-scope = "4.3.0"
sloggers = "0.3.5"
toml = "0.5.6"
tree-sitter = "0.6.0"
[build-dependencies]
cc = { version = "1.0.50", features = ["parallel"] }
# [profile.release]
# lto = true
[features]
default = ["rust"]
all = [
"bash",
"c_sharp",
"c",
"clojure",
"cpp",
"css",
"elm",
"go",
"haskell",
"html",
"java",
"javascript",
"json",
"julia",
"ocaml",
"php",
"python",
"racket",
"ruby",
"rust",
"scala",
"typescript"
]
bash = []
c_sharp = []
c = []
clojure = []
cpp = []
css = []
elm = []
go = []
haskell = []
html = []
java = []
javascript = []
json = []
julia = []
ocaml = []
php = []
python = []
racket = []
ruby = []
rust = []
scala = []
typescript = []