-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 850 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 850 Bytes
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
[package]
name = "sourcedigger"
version = "0.1.0"
authors = ["David Shlemayev <david.shlemayev@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = "^0.4"
rocket_contrib = { version = "^0.4", default-features = false, features = ["serve", "tera_templates"] }
serde = { version = "1.0", features = ["derive"] }
git2 = "0.17.1"
regex = "1.3.9"
hex = "0.4.2"
rayon = "1.3.0"
subprocess = "0.2.4"
ctags = { path = "./lib/ctags" }
crossbeam = "0.8.2"
lazy_static = "1.4.0"
alphanumeric-sort = "1.3.2"
Inflector = "0.11.4"
url = "2.1.1"
toml = "0.7.3"
[[bin]]
name = "sourcedigger-admin"
path = "src/admin/main.rs"
[[bin]]
name = "sourcedigger-experiment"
path = "src/experiment/main.rs"
[[bin]]
name = "sourcedigger-server"
path = "src/server/main.rs"