c21a326a13
A little tool to manipulate urls. Xurl offer severals commands: -Dissect: The dissect command splits and prints the different parts of the url. These parts are; scheme, for urls with authentication information, the username and the password, host, port, path to the document, query string and fragment. -Join: The join command joins an url and a new path together. -Encode: The encode command applies the percent-encoding on the url. -Decode: The decode command reverses the percent-encoding applyied on an url. -Idna Encode: The idna-encode command applies the punycode translation on an internationalized domain name. -Idna Decode: The idna-decode command reverses the punycode translation applied on an internationalized domain name.
49 lines
1.9 KiB
Makefile
49 lines
1.9 KiB
Makefile
# $NetBSD: cargo-depends.mk,v 1.1 2021/06/24 10:37:30 pin Exp $
|
|
|
|
CARGO_CRATE_DEPENDS+= ansi_term-0.11.0
|
|
CARGO_CRATE_DEPENDS+= atty-0.2.14
|
|
CARGO_CRATE_DEPENDS+= autocfg-1.0.1
|
|
CARGO_CRATE_DEPENDS+= bitflags-1.2.1
|
|
CARGO_CRATE_DEPENDS+= cfg-if-1.0.0
|
|
CARGO_CRATE_DEPENDS+= chrono-0.4.19
|
|
CARGO_CRATE_DEPENDS+= clap-2.33.3
|
|
CARGO_CRATE_DEPENDS+= form_urlencoded-1.0.1
|
|
CARGO_CRATE_DEPENDS+= heck-0.3.2
|
|
CARGO_CRATE_DEPENDS+= hermit-abi-0.1.18
|
|
CARGO_CRATE_DEPENDS+= idna-0.2.3
|
|
CARGO_CRATE_DEPENDS+= lazy_static-1.4.0
|
|
CARGO_CRATE_DEPENDS+= libc-0.2.94
|
|
CARGO_CRATE_DEPENDS+= log-0.4.14
|
|
CARGO_CRATE_DEPENDS+= matches-0.1.8
|
|
CARGO_CRATE_DEPENDS+= num-integer-0.1.44
|
|
CARGO_CRATE_DEPENDS+= num-traits-0.2.14
|
|
CARGO_CRATE_DEPENDS+= percent-encoding-2.1.0
|
|
CARGO_CRATE_DEPENDS+= proc-macro-error-1.0.4
|
|
CARGO_CRATE_DEPENDS+= proc-macro-error-attr-1.0.4
|
|
CARGO_CRATE_DEPENDS+= proc-macro2-1.0.27
|
|
CARGO_CRATE_DEPENDS+= quote-1.0.9
|
|
CARGO_CRATE_DEPENDS+= stderrlog-0.5.1
|
|
CARGO_CRATE_DEPENDS+= strsim-0.8.0
|
|
CARGO_CRATE_DEPENDS+= structopt-0.3.21
|
|
CARGO_CRATE_DEPENDS+= structopt-derive-0.4.14
|
|
CARGO_CRATE_DEPENDS+= syn-1.0.72
|
|
CARGO_CRATE_DEPENDS+= termcolor-1.1.2
|
|
CARGO_CRATE_DEPENDS+= textwrap-0.11.0
|
|
CARGO_CRATE_DEPENDS+= thread_local-1.0.1
|
|
CARGO_CRATE_DEPENDS+= time-0.1.44
|
|
CARGO_CRATE_DEPENDS+= tinyvec-1.2.0
|
|
CARGO_CRATE_DEPENDS+= tinyvec_macros-0.1.0
|
|
CARGO_CRATE_DEPENDS+= unicode-bidi-0.3.5
|
|
CARGO_CRATE_DEPENDS+= unicode-normalization-0.1.17
|
|
CARGO_CRATE_DEPENDS+= unicode-segmentation-1.7.1
|
|
CARGO_CRATE_DEPENDS+= unicode-width-0.1.8
|
|
CARGO_CRATE_DEPENDS+= unicode-xid-0.2.2
|
|
CARGO_CRATE_DEPENDS+= url-2.2.2
|
|
CARGO_CRATE_DEPENDS+= urlencoding-1.3.3
|
|
CARGO_CRATE_DEPENDS+= vec_map-0.8.2
|
|
CARGO_CRATE_DEPENDS+= version_check-0.9.3
|
|
CARGO_CRATE_DEPENDS+= wasi-0.10.0+wasi-snapshot-preview1
|
|
CARGO_CRATE_DEPENDS+= winapi-0.3.9
|
|
CARGO_CRATE_DEPENDS+= winapi-i686-pc-windows-gnu-0.4.0
|
|
CARGO_CRATE_DEPENDS+= winapi-util-0.1.5
|
|
CARGO_CRATE_DEPENDS+= winapi-x86_64-pc-windows-gnu-0.4.0
|