-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (45 loc) · 1.59 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
[package]
name = "reeves"
version = "0.1.0"
edition = "2018"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reeves-types = { path = "reeves-types" }
# rust-analyzer
ra-base_db = { package = "base_db", path = "rust-analyzer/crates/base_db" }
ra-hir = { package = "hir", path = "rust-analyzer/crates/hir" }
ra-profile = { package = "profile", path = "rust-analyzer/crates/profile" }
ra-project_model = { package = "project_model", path = "rust-analyzer/crates/project_model" }
ra-paths = { package = "paths", path = "rust-analyzer/crates/paths" }
rust-analyzer = { path = "rust-analyzer/crates/rust-analyzer" }
# srv
actix-files = { git = "https://github.com/aidanhs/actix-web.git", rev = "9661ef9" }
actix-rt = "1.0"
actix-web = "2.0"
filesystem = { git = "https://github.com/aidanhs/filesystem-rs.git", rev = "3aafbbc" }
tar = { version = "0.4", default-features = false }
# main
anyhow = "1.0"
bincode = "1.3"
crates-index = { version = "0.17", features = ["vendored-openssl"] }
either = { version = "1.6", features = ["serde"] }
env_logger = "0.9"
futures = { version = "0.3", features = ["executor", "thread-pool"] }
log = "0.4"
meilisearch-sdk = "0.10.0"
# KEEP THIS IN SYNC WITH MEILISEARCH
isahc = { version = "1.0", features = ["json", "static-ssl"]}
serde = "1.0"
serde_json = "1.0"
sled = "0.34.6"
structopt = "0.3"
void = "1"
[profile.dev.package."*"]
opt-level = 2
[profile.dev]
incremental = true
debug = 0
[profile.release]
incremental = true
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.