-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
69 lines (63 loc) · 1.55 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 = "nix4vscode"
description = "A tool to prefetch VS Code extensions for Nix expressions"
readme = "README.md"
version = "0.0.2"
edition = "2021"
license = "Apache-2.0"
keywords = ["nix"]
repository = "https://github.com/nix-community/nix4vscode"
homepage = "https://github.com/nix-community/nix4vscode"
authors = ["Loongtao Zhang <[email protected]>"]
[workspace.dependencies]
futures = "0.3"
semver = "1.0"
tracing = "0.1"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
lazy-regex = "3.4"
chrono = "0.4"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
toml = "0.8"
tracing = { workspace = true }
tokio = { version = "1.43", features = ["full"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
futures = { workspace = true }
semver = { workspace = true }
minijinja = { version = "2.7", features = ["loader"] }
clap = { version = "4.5", features = ["derive"] }
anyhow = { workspace = true }
nixpkgs-fmt = "1.3"
redb = "2.4"
thiserror = "2.0"
lazy-regex = { workspace = true }
derive = { path = "./crates/derive" }
code-api = { path = "./crates/code_api" }
rust-embed = "8.5"
rusqlite = { version = "0.32", features = ["bundled"] }
itertools = "0.14.0"
[package.metadata.deb]
assets = [
[
"target/release/nix4vscode",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/nix4vscode/",
"644",
],
[
"LICENSE",
"usr/share/doc/nix4vscode/",
"644",
],
]
priority = "optional"
section = "utils"
[profile.release]
strip = true