-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
69 lines (53 loc) · 1.34 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
[package]
name = "modeling"
version = "0.6.2"
authors = ["Inherd Group <[email protected]>", "Phodal Huang <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/inherd/modeling"
documentation = "https://github.com/inherd/modeling"
homepage = "https://github.com/inherd/modeling"
description = """
Modeling is a tools to analysis different languages by Ctags
"""
categories = ["text-processing", "command-line-interface", "development-tools"]
exclude = [
".github/*",
".gitattributes",
".adr.json",
]
[dependencies]
nix = "0.19"
tempfile = "3"
failure = "0.1"
# serialize
serde = "1"
serde_derive = "1"
serde_json = "1"
lazy_static = "1.4.0"
regex = "1"
# gitignore
# docs: https://github.com/BurntSushi/ripgrep/tree/master/crates/ignore
ignore = "0.4"
clap = "3.0.0-beta.2"
# command args to struct
structopt = "0.3"
structopt-toml = "0.4"
# https://crates.io/crates/grep-regex
grep-regex = "0.1.9"
grep-searcher = "0.1.8"
similar = { version = "2.1.0", features = ["text", "inline", "bytes"] }
console = "0.15.0"
prettytable-rs = "^0.8"
env_logger = "0.8.4"
log = "0.4"
tokenizers = "0.11.0"
# visual for embed files
rust-embed = "6.3.0"
# visual for web
actix-web = { version = "3", default-features = false }
actix-rt = "2.6.0"
mime_guess = "2.0.3"
# open URLs in browsers
webbrowser = "0.5.5"