-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (40 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
45 lines (40 loc) · 1.1 KB
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
[package]
name = "nurl"
version = "0.4.0"
authors = ["figsoda <figsoda@pm.me>"]
edition = "2024"
description = "Generate Nix fetcher calls from repository URLs"
readme = "README.md"
homepage = "https://github.com/nix-community/nurl"
repository = "https://github.com/nix-community/nurl"
license = "MPL-2.0"
keywords = ["cli", "fetch", "git", "nix", "prefetch"]
categories = ["command-line-utilities"]
[dependencies]
bstr = "1.12.1"
color-eyre = "0.6.5"
enum_dispatch = "0.3.13"
eyre = "0.6.12"
gix-url = "0.35.2"
itertools = "0.14.0"
owo-colors = { version = "4.3.0", features = ["supports-colors"] }
rustc-hash = "2.1.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
supports-color = "3.0.2"
ureq = { version = "3.3.0", features = ["json"] }
[dependencies.clap]
version = "4.6.0"
features = ["cargo", "derive", "unicode", "wrap_help"]
[build-dependencies]
clap = { version = "4.6.0", features = ["derive"] }
clap_complete = "4.6.2"
clap_mangen = "0.3.0"
[dev-dependencies]
assert_cmd = "2.2.0"
nu-glob = "0.112.1"
trycmd = "1.2.0"
[profile.release]
lto = true
panic = "abort"
codegen-units = 1