mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
www/gitlab: new ports required for gitlab 18.4.3
This commit is contained in:
@@ -7579,6 +7579,7 @@
|
||||
SUBDIR += rubygem-json-canonicalization
|
||||
SUBDIR += rubygem-json-gitlab
|
||||
SUBDIR += rubygem-json-schema
|
||||
SUBDIR += rubygem-json-schema-gitlab
|
||||
SUBDIR += rubygem-json1
|
||||
SUBDIR += rubygem-json_pure
|
||||
SUBDIR += rubygem-json_pure1
|
||||
@@ -7623,6 +7624,7 @@
|
||||
SUBDIR += rubygem-manpages
|
||||
SUBDIR += rubygem-map
|
||||
SUBDIR += rubygem-marcel
|
||||
SUBDIR += rubygem-marcel-gitlab
|
||||
SUBDIR += rubygem-memo_wise
|
||||
SUBDIR += rubygem-memoist
|
||||
SUBDIR += rubygem-memoist3
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
PORTNAME= json-schema
|
||||
PORTVERSION= 5.2.2
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= -gitlab
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
COMMENT= Ruby JSON schema validator
|
||||
WWW= https://github.com/ruby-json-schema/json-schema
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
||||
|
||||
RUN_DEPENDS= rubygem-addressable>=2.8<3:www/rubygem-addressable \
|
||||
rubygem-bigdecimal>=3.1<4:math/rubygem-bigdecimal
|
||||
|
||||
USES= gem
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1761397288
|
||||
SHA256 (rubygem/json-schema-5.2.2.gem) = 60beae0ed79ca9c552854c9ebfd44f50f77bd0c3144526d46afec384509940d5
|
||||
SIZE (rubygem/json-schema-5.2.2.gem) = 33280
|
||||
@@ -0,0 +1,4 @@
|
||||
This library is intended to provide Ruby with an interface for validating JSON
|
||||
objects against a JSON schema conforming to JSON Schema Draft 4. Legacy support
|
||||
for JSON Schema Draft 3, JSON Schema Draft 2, and JSON Schema Draft 1 is also
|
||||
included.
|
||||
@@ -0,0 +1,18 @@
|
||||
PORTNAME= marcel
|
||||
PORTVERSION= 1.0.4
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
PKGNAMESUFFIX= -gitlab
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
COMMENT= Simple mime type detection
|
||||
WWW= https://github.com/rails/marcel
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
|
||||
|
||||
USES= gem
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
@@ -0,0 +1,3 @@
|
||||
TIMESTAMP = 1761397957
|
||||
SHA256 (rubygem/marcel-1.0.4.gem) = 0d5649feb64b8f19f3d3468b96c680bae9746335d02194270287868a661516a4
|
||||
SIZE (rubygem/marcel-1.0.4.gem) = 46080
|
||||
@@ -0,0 +1,3 @@
|
||||
Marcel attempts to choose the most appropriate content type for a given file by
|
||||
looking at the binary data, the filename, and any declared type (perhaps passed
|
||||
as a request header).
|
||||
@@ -235,6 +235,7 @@
|
||||
SUBDIR += gh-grep
|
||||
SUBDIR += git-chglog
|
||||
SUBDIR += gitlab-elasticsearch-indexer
|
||||
SUBDIR += gitlab-code-parser
|
||||
SUBDIR += gitlab-zoekt-indexer
|
||||
SUBDIR += gl-aspell
|
||||
SUBDIR += gladtex
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
PORTNAME= gitlab-code-parser
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.20.1
|
||||
CATEGORIES= textproc
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
COMMENT= Rust-based code parser used by GitLab
|
||||
WWW= https://gitlab.com/gitlab-org/rust/gitlab-code-parser
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/libclang.so:devel/llvm${LLVM_DEFAULT}
|
||||
LIB_DEPENDS= libonig.so:devel/oniguruma \
|
||||
libzstd.so:archivers/zstd
|
||||
|
||||
USES= cargo ssl
|
||||
|
||||
USE_GITLAB= yes
|
||||
GL_ACCOUNT= gitlab-org
|
||||
GL_PROJECT= rust/gitlab-code-parser
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}
|
||||
|
||||
PLIST_FILES= bin/parser-cli \
|
||||
include/parser-c-bindings.h \
|
||||
lib/libchunker.rlib \
|
||||
lib/libparser_c_bindings.a \
|
||||
lib/libparser_c_bindings.so \
|
||||
lib/libparser_core.rlib \
|
||||
lib/libtesting.rlib
|
||||
|
||||
# update the crates file with: make cargo-crates > Makefile.crates
|
||||
|
||||
do-install:
|
||||
@${INSTALL_DATA} ${CARGO_TARGET_DIR}/include/*.h ${STAGEDIR}${PREFIX}/include
|
||||
@${INSTALL_LIB} ${CARGO_TARGET_DIR}/release/*.so ${STAGEDIR}${PREFIX}/lib
|
||||
@${INSTALL_DATA} ${CARGO_TARGET_DIR}/release/*.a ${STAGEDIR}${PREFIX}/lib
|
||||
@${INSTALL_DATA} ${CARGO_TARGET_DIR}/release/*.rlib ${STAGEDIR}${PREFIX}/lib
|
||||
@${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/release/parser-cli ${STAGEDIR}${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
||||
@@ -0,0 +1,422 @@
|
||||
CARGO_CRATES= addr2line-0.24.2 \
|
||||
adler2-2.0.1 \
|
||||
aes-0.8.4 \
|
||||
ahash-0.8.12 \
|
||||
aho-corasick-1.1.3 \
|
||||
allocator-api2-0.2.21 \
|
||||
anstream-0.6.20 \
|
||||
anstyle-1.0.11 \
|
||||
anstyle-parse-0.2.7 \
|
||||
anstyle-query-1.1.4 \
|
||||
anstyle-wincon-3.0.10 \
|
||||
anyhow-1.0.99 \
|
||||
arbitrary-1.4.2 \
|
||||
arrayvec-0.7.6 \
|
||||
ast-grep-config-0.39.4 \
|
||||
ast-grep-core-0.39.4 \
|
||||
ast-grep-language-0.39.4 \
|
||||
ast_node-3.0.3 \
|
||||
atomic-waker-1.1.2 \
|
||||
autocfg-1.5.0 \
|
||||
backtrace-0.3.75 \
|
||||
base64-0.13.1 \
|
||||
base64-0.22.1 \
|
||||
better_scoped_tls-1.0.1 \
|
||||
bindgen-0.66.1 \
|
||||
bit-set-0.8.0 \
|
||||
bit-vec-0.8.0 \
|
||||
bitflags-2.9.2 \
|
||||
block-buffer-0.10.4 \
|
||||
bstr-1.12.0 \
|
||||
bumpalo-3.19.0 \
|
||||
bytes-1.10.1 \
|
||||
bytes-str-0.2.7 \
|
||||
bzip2-0.6.0 \
|
||||
castaway-0.2.4 \
|
||||
cbindgen-0.29.0 \
|
||||
cc-1.2.33 \
|
||||
cexpr-0.6.0 \
|
||||
cfg-if-1.0.3 \
|
||||
cipher-0.4.4 \
|
||||
clang-sys-1.8.1 \
|
||||
clap-4.5.45 \
|
||||
clap_builder-4.5.44 \
|
||||
clap_derive-4.5.45 \
|
||||
clap_lex-0.7.5 \
|
||||
colorchoice-1.0.4 \
|
||||
compact_str-0.9.0 \
|
||||
console-0.15.11 \
|
||||
constant_time_eq-0.3.1 \
|
||||
core-foundation-0.9.4 \
|
||||
core-foundation-sys-0.8.7 \
|
||||
cpufeatures-0.2.17 \
|
||||
crc32fast-1.5.0 \
|
||||
crossbeam-deque-0.8.6 \
|
||||
crossbeam-epoch-0.9.18 \
|
||||
crossbeam-utils-0.8.21 \
|
||||
crypto-common-0.1.6 \
|
||||
darling-0.20.11 \
|
||||
darling_core-0.20.11 \
|
||||
darling_macro-0.20.11 \
|
||||
dary_heap-0.3.7 \
|
||||
dashmap-5.5.3 \
|
||||
deflate64-0.1.9 \
|
||||
deranged-0.4.0 \
|
||||
derive_arbitrary-1.4.2 \
|
||||
derive_builder-0.20.2 \
|
||||
derive_builder_core-0.20.2 \
|
||||
derive_builder_macro-0.20.2 \
|
||||
digest-0.10.7 \
|
||||
displaydoc-0.2.5 \
|
||||
dyn-clone-1.0.20 \
|
||||
either-1.15.0 \
|
||||
encode_unicode-1.0.0 \
|
||||
encoding_rs-0.8.35 \
|
||||
equivalent-1.0.2 \
|
||||
errno-0.3.13 \
|
||||
esaxx-rs-0.1.10 \
|
||||
fastrand-2.3.0 \
|
||||
flate2-1.1.2 \
|
||||
fnv-1.0.7 \
|
||||
foreign-types-0.3.2 \
|
||||
foreign-types-shared-0.1.1 \
|
||||
form_urlencoded-1.2.1 \
|
||||
from_variant-2.0.2 \
|
||||
futures-channel-0.3.31 \
|
||||
futures-core-0.3.31 \
|
||||
futures-sink-0.3.31 \
|
||||
futures-task-0.3.31 \
|
||||
futures-util-0.3.31 \
|
||||
generic-array-0.14.7 \
|
||||
getrandom-0.2.16 \
|
||||
getrandom-0.3.3 \
|
||||
gimli-0.31.1 \
|
||||
glob-0.3.3 \
|
||||
globset-0.4.16 \
|
||||
h2-0.4.12 \
|
||||
hashbrown-0.14.5 \
|
||||
hashbrown-0.15.5 \
|
||||
heck-0.5.0 \
|
||||
hermit-abi-0.5.2 \
|
||||
hmac-0.12.1 \
|
||||
home-0.5.11 \
|
||||
hstr-2.0.1 \
|
||||
http-1.3.1 \
|
||||
http-body-1.0.1 \
|
||||
http-body-util-0.1.3 \
|
||||
httparse-1.10.1 \
|
||||
hyper-1.7.0 \
|
||||
hyper-rustls-0.27.7 \
|
||||
hyper-tls-0.6.0 \
|
||||
hyper-util-0.1.16 \
|
||||
icu_collections-2.0.0 \
|
||||
icu_locale_core-2.0.0 \
|
||||
icu_normalizer-2.0.0 \
|
||||
icu_normalizer_data-2.0.0 \
|
||||
icu_properties-2.0.1 \
|
||||
icu_properties_data-2.0.1 \
|
||||
icu_provider-2.0.0 \
|
||||
ident_case-1.0.1 \
|
||||
idna-1.0.3 \
|
||||
idna_adapter-1.2.1 \
|
||||
ignore-0.4.23 \
|
||||
indexmap-2.10.0 \
|
||||
indicatif-0.17.11 \
|
||||
inout-0.1.4 \
|
||||
internment-0.7.5 \
|
||||
io-uring-0.7.9 \
|
||||
ipnet-2.11.0 \
|
||||
iri-string-0.7.8 \
|
||||
is-macro-0.3.7 \
|
||||
is_terminal_polyfill-1.70.1 \
|
||||
itertools-0.14.0 \
|
||||
itoa-1.0.15 \
|
||||
jobserver-0.1.33 \
|
||||
js-sys-0.3.77 \
|
||||
lazy_static-1.5.0 \
|
||||
lazycell-1.3.0 \
|
||||
libbz2-rs-sys-0.2.2 \
|
||||
libc-0.2.175 \
|
||||
libloading-0.8.8 \
|
||||
liblzma-0.4.3 \
|
||||
liblzma-sys-0.4.4 \
|
||||
libmimalloc-sys-0.1.44 \
|
||||
libz-rs-sys-0.5.1 \
|
||||
linux-raw-sys-0.4.15 \
|
||||
linux-raw-sys-0.9.4 \
|
||||
litemap-0.8.0 \
|
||||
lock_api-0.4.13 \
|
||||
log-0.4.27 \
|
||||
macro_rules_attribute-0.2.2 \
|
||||
macro_rules_attribute-proc_macro-0.2.2 \
|
||||
memchr-2.7.5 \
|
||||
mimalloc-0.1.48 \
|
||||
mime-0.3.17 \
|
||||
minimal-lexical-0.2.1 \
|
||||
miniz_oxide-0.8.9 \
|
||||
mio-1.0.4 \
|
||||
monostate-0.1.14 \
|
||||
monostate-impl-0.1.14 \
|
||||
native-tls-0.2.14 \
|
||||
new_debug_unreachable-1.0.6 \
|
||||
nom-7.1.3 \
|
||||
nu-ansi-term-0.46.0 \
|
||||
num-bigint-0.4.6 \
|
||||
num-conv-0.1.0 \
|
||||
num-integer-0.1.46 \
|
||||
num-traits-0.2.19 \
|
||||
num_cpus-1.17.0 \
|
||||
number_prefix-0.4.0 \
|
||||
object-0.36.7 \
|
||||
once_cell-1.21.3 \
|
||||
once_cell_polyfill-1.70.1 \
|
||||
onig-6.5.1 \
|
||||
onig_sys-69.9.1 \
|
||||
openssl-0.10.73 \
|
||||
openssl-macros-0.1.1 \
|
||||
openssl-probe-0.1.6 \
|
||||
openssl-sys-0.9.109 \
|
||||
overload-0.1.1 \
|
||||
par-core-2.0.0 \
|
||||
parking_lot-0.12.4 \
|
||||
parking_lot_core-0.9.11 \
|
||||
paste-1.0.15 \
|
||||
pbkdf2-0.12.2 \
|
||||
peeking_take_while-0.1.2 \
|
||||
percent-encoding-2.3.1 \
|
||||
phf-0.11.3 \
|
||||
phf_generator-0.11.3 \
|
||||
phf_macros-0.11.3 \
|
||||
phf_shared-0.11.3 \
|
||||
pin-project-lite-0.2.16 \
|
||||
pin-utils-0.1.0 \
|
||||
pkg-config-0.3.32 \
|
||||
portable-atomic-1.11.1 \
|
||||
potential_utf-0.1.2 \
|
||||
powerfmt-0.2.0 \
|
||||
ppmd-rust-1.2.1 \
|
||||
ppv-lite86-0.2.21 \
|
||||
prettyplease-0.2.37 \
|
||||
proc-macro2-1.0.101 \
|
||||
psm-0.1.26 \
|
||||
quote-1.0.40 \
|
||||
r-efi-5.3.0 \
|
||||
rand-0.8.5 \
|
||||
rand-0.9.2 \
|
||||
rand_chacha-0.9.0 \
|
||||
rand_core-0.6.4 \
|
||||
rand_core-0.9.3 \
|
||||
rayon-1.11.0 \
|
||||
rayon-cond-0.4.0 \
|
||||
rayon-core-1.13.0 \
|
||||
redox_syscall-0.5.17 \
|
||||
ref-cast-1.0.24 \
|
||||
ref-cast-impl-1.0.24 \
|
||||
regex-1.11.1 \
|
||||
regex-automata-0.4.9 \
|
||||
regex-syntax-0.8.5 \
|
||||
reqwest-0.12.23 \
|
||||
ring-0.17.14 \
|
||||
ruby-prism-1.4.0 \
|
||||
ruby-prism-sys-1.4.0 \
|
||||
rust-lapper-1.2.0 \
|
||||
rustc-demangle-0.1.26 \
|
||||
rustc-hash-1.1.0 \
|
||||
rustc-hash-2.1.1 \
|
||||
rustix-0.38.44 \
|
||||
rustix-1.0.8 \
|
||||
rustls-0.23.31 \
|
||||
rustls-pki-types-1.12.0 \
|
||||
rustls-webpki-0.103.4 \
|
||||
rustversion-1.0.22 \
|
||||
ryu-1.0.20 \
|
||||
ryu-js-1.0.2 \
|
||||
same-file-1.0.6 \
|
||||
schannel-0.1.27 \
|
||||
schemars-1.0.4 \
|
||||
schemars_derive-1.0.4 \
|
||||
scoped-tls-1.0.1 \
|
||||
scopeguard-1.2.0 \
|
||||
security-framework-2.11.1 \
|
||||
security-framework-sys-2.14.0 \
|
||||
seq-macro-0.3.6 \
|
||||
serde-1.0.219 \
|
||||
serde_derive-1.0.219 \
|
||||
serde_derive_internals-0.29.1 \
|
||||
serde_json-1.0.143 \
|
||||
serde_spanned-0.6.9 \
|
||||
serde_spanned-1.0.0 \
|
||||
serde_urlencoded-0.7.1 \
|
||||
serde_yaml-0.9.34+deprecated \
|
||||
sha1-0.10.6 \
|
||||
sharded-slab-0.1.7 \
|
||||
shlex-1.3.0 \
|
||||
simd-adler32-0.3.7 \
|
||||
siphasher-0.3.11 \
|
||||
siphasher-1.0.1 \
|
||||
slab-0.4.11 \
|
||||
smallvec-1.15.1 \
|
||||
smartstring-1.0.1 \
|
||||
socket2-0.6.0 \
|
||||
spm_precompiled-0.1.4 \
|
||||
stable_deref_trait-1.2.0 \
|
||||
stacker-0.1.21 \
|
||||
static_assertions-1.1.0 \
|
||||
streaming-iterator-0.1.9 \
|
||||
string_enum-1.0.2 \
|
||||
strsim-0.11.1 \
|
||||
subtle-2.6.1 \
|
||||
swc_atoms-7.0.0 \
|
||||
swc_common-14.0.3 \
|
||||
swc_ecma_ast-15.0.0 \
|
||||
swc_ecma_lexer-23.0.0 \
|
||||
swc_ecma_parser-23.0.0 \
|
||||
swc_ecma_transforms_base-25.0.0 \
|
||||
swc_ecma_utils-21.0.0 \
|
||||
swc_ecma_visit-15.0.0 \
|
||||
swc_eq_ignore_macros-1.0.1 \
|
||||
swc_macros_common-1.0.1 \
|
||||
swc_visit-2.0.1 \
|
||||
syn-2.0.106 \
|
||||
sync_wrapper-1.0.2 \
|
||||
synstructure-0.13.2 \
|
||||
system-configuration-0.6.1 \
|
||||
system-configuration-sys-0.6.0 \
|
||||
tempfile-3.21.0 \
|
||||
thiserror-2.0.16 \
|
||||
thiserror-impl-2.0.16 \
|
||||
thread_local-1.1.9 \
|
||||
time-0.3.41 \
|
||||
time-core-0.1.4 \
|
||||
tinystr-0.8.1 \
|
||||
tokenizers-0.21.4 \
|
||||
tokio-1.47.1 \
|
||||
tokio-macros-2.5.0 \
|
||||
tokio-native-tls-0.3.1 \
|
||||
tokio-rustls-0.26.2 \
|
||||
tokio-util-0.7.16 \
|
||||
toml-0.8.23 \
|
||||
toml-0.9.5 \
|
||||
toml_datetime-0.6.11 \
|
||||
toml_datetime-0.7.0 \
|
||||
toml_edit-0.22.27 \
|
||||
toml_parser-1.0.2 \
|
||||
toml_write-0.1.2 \
|
||||
toml_writer-1.0.2 \
|
||||
tower-0.5.2 \
|
||||
tower-http-0.6.6 \
|
||||
tower-layer-0.3.3 \
|
||||
tower-service-0.3.3 \
|
||||
tracing-0.1.41 \
|
||||
tracing-attributes-0.1.30 \
|
||||
tracing-core-0.1.34 \
|
||||
tracing-log-0.2.0 \
|
||||
tracing-subscriber-0.3.19 \
|
||||
tree-sitter-0.25.8 \
|
||||
tree-sitter-bash-0.25.0 \
|
||||
tree-sitter-c-0.24.1 \
|
||||
tree-sitter-c-sharp-0.23.1 \
|
||||
tree-sitter-cpp-0.23.4 \
|
||||
tree-sitter-css-0.23.2 \
|
||||
tree-sitter-elixir-0.3.4 \
|
||||
tree-sitter-go-0.23.4 \
|
||||
tree-sitter-haskell-0.23.1 \
|
||||
tree-sitter-hcl-1.1.0 \
|
||||
tree-sitter-html-0.23.2 \
|
||||
tree-sitter-java-0.23.5 \
|
||||
tree-sitter-javascript-0.23.1 \
|
||||
tree-sitter-json-0.23.0 \
|
||||
tree-sitter-kotlin-sg-0.4.0 \
|
||||
tree-sitter-language-0.1.5 \
|
||||
tree-sitter-lua-0.2.0 \
|
||||
tree-sitter-nix-0.3.0 \
|
||||
tree-sitter-php-0.23.11 \
|
||||
tree-sitter-python-0.23.6 \
|
||||
tree-sitter-ruby-0.23.1 \
|
||||
tree-sitter-rust-0.24.0 \
|
||||
tree-sitter-scala-0.24.0 \
|
||||
tree-sitter-solidity-1.2.13 \
|
||||
tree-sitter-swift-0.7.1 \
|
||||
tree-sitter-typescript-0.23.2 \
|
||||
tree-sitter-yaml-0.7.1 \
|
||||
triomphe-0.1.14 \
|
||||
try-lock-0.2.5 \
|
||||
typenum-1.18.0 \
|
||||
unicode-id-start-1.3.1 \
|
||||
unicode-ident-1.0.18 \
|
||||
unicode-normalization-alignments-0.1.12 \
|
||||
unicode-segmentation-1.12.0 \
|
||||
unicode-width-0.1.14 \
|
||||
unicode-width-0.2.1 \
|
||||
unicode_categories-0.1.1 \
|
||||
unsafe-libyaml-0.2.11 \
|
||||
untrusted-0.9.0 \
|
||||
url-2.5.4 \
|
||||
utf8_iter-1.0.4 \
|
||||
utf8parse-0.2.2 \
|
||||
valuable-0.1.1 \
|
||||
vcpkg-0.2.15 \
|
||||
version_check-0.9.5 \
|
||||
walkdir-2.5.0 \
|
||||
want-0.3.1 \
|
||||
wasi-0.11.1+wasi-snapshot-preview1 \
|
||||
wasi-0.14.2+wasi-0.2.4 \
|
||||
wasm-bindgen-0.2.100 \
|
||||
wasm-bindgen-backend-0.2.100 \
|
||||
wasm-bindgen-futures-0.4.50 \
|
||||
wasm-bindgen-macro-0.2.100 \
|
||||
wasm-bindgen-macro-support-0.2.100 \
|
||||
wasm-bindgen-shared-0.2.100 \
|
||||
web-sys-0.3.77 \
|
||||
web-time-1.1.0 \
|
||||
which-4.4.2 \
|
||||
winapi-0.3.9 \
|
||||
winapi-i686-pc-windows-gnu-0.4.0 \
|
||||
winapi-util-0.1.10 \
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0 \
|
||||
windows-link-0.1.3 \
|
||||
windows-registry-0.5.3 \
|
||||
windows-result-0.3.4 \
|
||||
windows-strings-0.4.2 \
|
||||
windows-sys-0.52.0 \
|
||||
windows-sys-0.59.0 \
|
||||
windows-sys-0.60.2 \
|
||||
windows-targets-0.52.6 \
|
||||
windows-targets-0.53.3 \
|
||||
windows_aarch64_gnullvm-0.52.6 \
|
||||
windows_aarch64_gnullvm-0.53.0 \
|
||||
windows_aarch64_msvc-0.52.6 \
|
||||
windows_aarch64_msvc-0.53.0 \
|
||||
windows_i686_gnu-0.52.6 \
|
||||
windows_i686_gnu-0.53.0 \
|
||||
windows_i686_gnullvm-0.52.6 \
|
||||
windows_i686_gnullvm-0.53.0 \
|
||||
windows_i686_msvc-0.52.6 \
|
||||
windows_i686_msvc-0.53.0 \
|
||||
windows_x86_64_gnu-0.52.6 \
|
||||
windows_x86_64_gnu-0.53.0 \
|
||||
windows_x86_64_gnullvm-0.52.6 \
|
||||
windows_x86_64_gnullvm-0.53.0 \
|
||||
windows_x86_64_msvc-0.52.6 \
|
||||
windows_x86_64_msvc-0.53.0 \
|
||||
winnow-0.7.12 \
|
||||
wit-bindgen-rt-0.39.0 \
|
||||
writeable-0.6.1 \
|
||||
yoke-0.8.0 \
|
||||
yoke-derive-0.8.0 \
|
||||
zerocopy-0.8.26 \
|
||||
zerocopy-derive-0.8.26 \
|
||||
zerofrom-0.1.6 \
|
||||
zerofrom-derive-0.1.6 \
|
||||
zeroize-1.8.1 \
|
||||
zeroize_derive-1.4.2 \
|
||||
zerotrie-0.2.2 \
|
||||
zerovec-0.11.4 \
|
||||
zerovec-derive-0.11.1 \
|
||||
zip-4.6.1 \
|
||||
zlib-rs-0.5.1 \
|
||||
zopfli-0.8.2 \
|
||||
zstd-0.13.3 \
|
||||
zstd-safe-7.2.4 \
|
||||
zstd-sys-2.0.15+zstd.1.5.7 \
|
||||
gitalisk-core@git+https://gitlab.com/gitlab-org/rust/gitalisk.git?tag=v0.5.1\#abb696198f2be5bd1f4894b1af2fa057dccef543
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
||||
Rust-based code parser used by GitLab
|
||||
Reference in New Issue
Block a user