-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 749 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 749 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
37
38
39
[package]
name = "carrycode-coreapi"
version = "0.5.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src-rs/lib.rs"
[dependencies]
napi = { version = "2", features = ["async", "tokio_rt"] }
napi-derive = "2"
rand = "0.8"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
log = "0.4"
log4rs = "1.3"
reqwest = { version = "0.11", features = ["stream", "json", "blocking"] }
futures = "0.3"
regex = "1"
walkdir = "2"
ignore = "0.4"
similar = "2"
eventsource-stream = "0.2"
html2md = "0.2"
html2text = "0.12"
tower-lsp = "0.20"
async-stream = "0.3"
lazy_static = "1.4"
url = "2"
toml = "0.8"
dirs = "5.0"
[build-dependencies]
napi-build = "2"