nurl/Cargo.toml

38 lines
947 B
TOML
Raw Normal View History

2022-12-29 21:01:00 +03:00
[package]
name = "nurl"
2023-01-01 22:28:05 +03:00
version = "0.2.2"
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]
2022-12-30 05:04:19 +03:00
anyhow = "1.0.68"
2022-12-30 20:33:44 +03:00
enum_dispatch = "0.3.9"
2022-12-30 05:04:19 +03:00
indoc = "1.0.8"
itertools = "0.10.5"
2022-12-31 23:09:23 +03:00
owo-colors = { version = "3.5.0", features = ["supports-colors"] }
2022-12-30 05:04:19 +03:00
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
url = "2.3.1"
[dependencies.clap]
version = "4.0.32"
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.0.32", features = ["derive"] }
clap_complete = "4.0.7"
clap_mangen = "0.2.6"
url = "2.3.1"
2022-12-29 21:01:00 +03:00
[profile.release]
lto = true
panic = "abort"
codegen-units = 1