blob: f45d08c663692fa307ffce3e3e23bacef0a9db96 (
plain)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Created by: Sergey A. Osokin <osa@FreeBSD.org>
# $FreeBSD$
PORTNAME= jwt-cli
PORTVERSION= 3.2.1
PORTREVISION= 1
CATEGORIES= www
MAINTAINER= osa@FreeBSD.org
COMMENT= Super fast CLI tool to decode and encode JWTs
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.md
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= mike-engel
CARGO_CRATES= aho-corasick-0.7.13 \
ansi_term-0.11.0 \
atty-0.2.14 \
autocfg-1.0.1 \
base64-0.12.3 \
bitflags-1.2.1 \
bumpalo-3.4.0 \
cc-1.0.59 \
cfg-if-0.1.10 \
chrono-0.4.15 \
clap-2.33.3 \
hermit-abi-0.1.15 \
itoa-0.4.6 \
js-sys-0.3.45 \
jsonwebtoken-7.2.0 \
kernel32-sys-0.2.2 \
lazy_static-1.4.0 \
libc-0.2.77 \
log-0.4.11 \
memchr-2.3.3 \
num-0.2.1 \
num-bigint-0.2.6 \
num-complex-0.2.4 \
num-integer-0.1.43 \
num-iter-0.1.41 \
num-rational-0.2.4 \
num-traits-0.2.12 \
once_cell-1.4.1 \
parse_duration-2.1.0 \
pem-0.8.1 \
proc-macro2-1.0.21 \
quote-1.0.7 \
regex-1.3.9 \
regex-syntax-0.6.18 \
ring-0.16.15 \
ryu-1.0.5 \
serde-1.0.115 \
serde_derive-1.0.115 \
serde_json-1.0.57 \
simple_asn1-0.4.1 \
spin-0.5.2 \
strsim-0.8.0 \
syn-1.0.40 \
term-0.4.6 \
term-painter-0.2.4 \
textwrap-0.11.0 \
thread_local-1.0.1 \
time-0.1.44 \
unicode-width-0.1.8 \
unicode-xid-0.2.1 \
untrusted-0.7.1 \
vec_map-0.8.2 \
wasi-0.10.0+wasi-snapshot-preview1 \
wasm-bindgen-0.2.68 \
wasm-bindgen-backend-0.2.68 \
wasm-bindgen-macro-0.2.68 \
wasm-bindgen-macro-support-0.2.68 \
wasm-bindgen-shared-0.2.68 \
web-sys-0.3.45 \
winapi-0.2.8 \
winapi-0.3.9 \
winapi-build-0.1.1 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-x86_64-pc-windows-gnu-0.4.0
PLIST_FILES= bin/jwt
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jwt
.include <bsd.port.mk>
|