nurl/Cargo.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

2022-12-29 21:01:00 +03:00
[package]
name = "nurl"
2023-07-22 00:21:00 +03:00
version = "0.3.13"
2022-12-29 21:01:00 +03:00
authors = ["figsoda <figsoda@pm.me>"]
edition = "2021"
2022-12-30 05:04:19 +03:00
description = "Generate Nix fetcher calls from repository URLs"
2022-12-29 21:01:00 +03:00
readme = "README.md"
homepage = "https://github.com/nix-community/nurl"
repository = "https://github.com/nix-community/nurl"
license = "MPL-2.0"
2022-12-30 05:04:19 +03:00
keywords = ["cli", "fetch", "git", "nix", "prefetch"]
categories = ["command-line-utilities"]
2022-12-29 21:01:00 +03:00
[dependencies]
anyhow = "1.0.79"
bstr = "1.9.0"
data-encoding = "2.5.0"
enum_dispatch = "0.3.12"
gix-url = "0.27.0"
is-terminal = "0.4.12"
itertools = "0.12.1"
nix-compat = { git = "https://code.tvl.fyi/depot.git:/tvix/nix-compat.git" }
owo-colors = { version = "4.0.0", features = ["supports-colors"] }
2023-01-02 03:08:25 +03:00
rustc-hash = "1.1.0"
serde = { version = "1.0.196", features = ["derive"] }
serde_json = "1.0.113"
ureq = { version = "2.9.1", features = ["json"] }
2022-12-30 05:04:19 +03:00
[dependencies.clap]
version = "4.5.1"
2022-12-30 05:04:19 +03:00
features = ["cargo", "derive", "unicode", "wrap_help"]
2022-12-29 21:01:00 +03:00
2022-12-30 23:36:38 +03:00
[build-dependencies]
clap = { version = "4.5.1", features = ["derive"] }
clap_complete = "4.5.1"
clap_mangen = "0.2.20"
2022-12-30 23:36:38 +03:00
2023-01-03 21:34:06 +03:00
[dev-dependencies]
assert_cmd = "2.0.13"
nu-glob = "0.90.1"
trycmd = "0.15.0"
2023-01-03 21:34:06 +03:00
2022-12-29 21:01:00 +03:00
[profile.release]
lto = true
panic = "abort"
codegen-units = 1