-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (44 loc) · 1.46 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
[package]
name = "cargo-appraiser"
description = "a LSP for Cargo.toml"
version = "0.0.1"
edition = "2021"
license = "MIT"
homepage = "https://github.com/washanhanzi/cargo-appraiser"
repository = "https://github.com/washanhanzi/cargo-appraiser"
[dependencies]
serde_json = "1"
taplo = "0.13"
tokio = { version = "1.41", features = ["full", "macros", "rt-multi-thread"] }
lsp-async-stub = "0.6.4"
serde = { version = "1.0", features = ["derive"] }
parking_lot = "0.12"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
once_cell = "1.20"
semver = "1.0"
tracing-subscriber = "0.3"
futures = "0.3"
tracing = "0"
openssl = { version = '0.10', optional = true }
reqwest = { version = "0.12", features = ["json"] }
thiserror = "2.0"
executable_path_finder = "0.0.5"
petgraph = "0.6.5"
tokio-util = { version = "0.7.12", features = ["time"] }
unicode-xid = "0.2.6"
cargo-util-schemas = "0"
cargo = { git = "https://github.com/washanhanzi/cargo.git", branch = "master" }
tower-lsp = { git = "https://github.com/washanhanzi/tower-lsp", branch = "master", features = [
"proposed",
] }
rustsec = { git = "https://github.com/washanhanzi/rustsec", branch = "main" }
cargo-audit = { git = "https://github.com/washanhanzi/rustsec", branch = "main", features = [
"default",
] }
cargo-lock = { git = "https://github.com/washanhanzi/rustsec", branch = "main", version = "10.0.1", features = [
"dependency-tree",
] }
[features]
default = []
vendored-openssl = ["openssl/vendored"]