SHA256
1
0
forked from pool/ast-grep

- Update to 0.26.1:

* feat: support dynamic language in pyo3 #1143
  * test: add test for load dynamic lang in python 236f4ab
  * feat: add py_lang registration function 43e74e7
  * feat: add pytype for register language 8b660cf

OBS-URL: https://build.opensuse.org/package/show/utilities/ast-grep?expand=0&rev=76
This commit is contained in:
Michael Vetter 2024-08-10 04:40:12 +00:00 committed by Git OBS Bridge
commit 1678c9829e
13 changed files with 584 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

25
_service Normal file
View File

@ -0,0 +1,25 @@
<services>
<service mode="disabled" name="obs_scm">
<param name="url">https://github.com/ast-grep/ast-grep.git</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="scm">git</param>
<param name="revision">0.26.1</param>
<param name="match-tag">*</param>
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
<param name="versionrewrite-replacement">\1</param>
</service>
<service mode="disabled" name="tar" />
<service mode="disabled" name="recompress">
<param name="file">*.tar</param>
<param name="compression">zst</param>
</service>
<service mode="disabled" name="set_version"/>
<service name="cargo_vendor" mode="disabled">
<param name="src">ast-grep</param>
<param name="compression">zst</param>
<param name="update">true</param>
</service>
<service name="cargo_audit" mode="disabled">
<param name="srcdir">ast-grep</param>
</service>
</services>

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:38230e2621e3f4438adde1f3654018af0e1753def221ad0178e7b0067fb75f7a
size 683874

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc8df0219340935956224d97d69ca35bc60542e37b1ec997ff3581b72331547f
size 686857

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15f5fbe2c5f5bd27f975593e19ca7cb107ca5a09b183b18605e43060a3813ad6
size 689480

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95acaa8d22f423d7dcc5807d87800e4d754f051919bd44441df9b7e8511c60a9
size 690549

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8bc9e706c4ce7ebea690e2fd062639b440980aa3c431ff84ccd7840bc63d5ca3
size 690813

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:236f2f7b224b7f30d6a3c0575675d9616ea2e4063800bb7f350b8a55516c0379
size 691529

459
ast-grep.changes Normal file
View File

@ -0,0 +1,459 @@
-------------------------------------------------------------------
Sat Aug 10 04:37:33 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.26.1:
* feat: support dynamic language in pyo3 #1143
* test: add test for load dynamic lang in python 236f4ab
* feat: add py_lang registration function 43e74e7
* feat: add pytype for register language 8b660cf
-------------------------------------------------------------------
Thu Aug 8 05:24:11 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.26.0:
* feat: Additional impls for language types #1379
* feat: append note to error message if available #1384
* fix: LSP should skip files outside the workspace root #1382
* fix(deps): update dependency @babel/core to v7.25.2 3b0be88
* refactor: split two macros b760eb8
* refactor: simplify visitor 5ae03ae
-------------------------------------------------------------------
Wed Aug 7 05:33:51 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.7:
* feat: add charCount to split lines #1381
* chore(deps): update dependency @types/node to v20.14.14 bca7e7b
* fix(deps): update rust crate clap to v4.5.13 c143464
* fix(deps): update rust crate toml_edit to v0.22.20 170da4c
-------------------------------------------------------------------
Mon Aug 5 05:52:57 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.6:
* feat: add --selector in sg run #1378
* fix: fix clippy new complaints a4cc793
* fix(deps): update dependency @swc/core to v1.7.5 d3ee100
* chore(deps): update rust crate tree-sitter to v0.22.2 93d684a
-------------------------------------------------------------------
Fri Aug 2 06:32:03 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.5:
* feat: support using transform in rule message #1366
* test: add test for skipping multiple ellipsis #1365
* feat: Support ast-grep-ignore comment on same line as violation #1347
* Revert "feat: add wasm engine support" 78b1633
* feat: add wasm engine support ff77914
* refactor: remove old find/scan 58a3646
-------------------------------------------------------------------
Fri Jul 26 06:00:19 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.4:
* feat: support sql experimentally #1300
* feat: consistent file path for search by removing ./ prefix #1343
* feat: allow multiple tests in a single YAML file #1344
* refactor: use HarnessBuilder c41ffa8
* refactor: move out some files dfa38f2
* test: add test for deserde tests 76796e4
-------------------------------------------------------------------
Tue Jul 23 09:36:26 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.3:
* feat: support custom language injection #1309
* feat: register embedded language 416e28e
* fix(deps): update dependency @babel/core to v7.24.9 8c5dd00
* fix(deps): update dependency @swc/core to v1.7.0 61f6a14
-------------------------------------------------------------------
Fri Jul 19 07:49:18 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.2:
* fix: only present code action when there are truly fixable diagnostic #1327
* refactor: move some function out of lsp 1e6b477
* fix: use fix in data for fix all command d358d45
* fix: update fix all lsp b760b9b
-------------------------------------------------------------------
Mon Jul 15 04:07:48 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.1:
* fix: make config file work outside of workspace root #1326
* fix: fix napi musl bde7f34
* fix: debug napi 2d87fc5
-------------------------------------------------------------------
Mon Jul 15 04:06:47 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.25.0:
* Fix Python 3.10 macOS ast-grep-py build #1315
* feat: support multiple doc in scan #1310
* fix: fix testing #1305
* feat: support searching injected code in specified lang #1307
* feat: improve HTML language extraction for ts/scss #1301
* fix: use relative path in lsp #1272
* fix: use match info in lsp message #1271
* feat: support arm64 musl #1227
* fix(deps): update dependency @babel/core to v7.24.8 624aa70
* feat: support multiple regions in run 07ef11f
* refactor: move Html out 4a0c177
-------------------------------------------------------------------
Thu Jun 27 05:46:01 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.24.1:
* fix: skip missing node in pattern #1256
* doc: add cli help text for debug format 1754382
-------------------------------------------------------------------
Mon Jun 24 07:24:44 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.24.0:
* feat: add debug ast and cst #1218
* feat: add strictness in PyO3 #1246
* feat: add strictness flag in cli #1243
* test: add test for different strictness #1241
* feat: add strictness to YAML #1239
* Breaking change: fix: update API for fix 4971ac2
* Breaking change: fix: change deletedLength to endPos in napi c0e9a65
* feat: add colorized output 22f279c
-------------------------------------------------------------------
Mon Jun 24 07:24:25 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.23.1:
* fix: all should not pollute env #1225
* Breaking change: feat: use new pattern struct f219b43
* refactor: move match_node impl out 27c918a
* refactor: factor out match_ellipsis logic 407d2a8
-------------------------------------------------------------------
Tue Jun 11 10:13:44 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.23.0:
* feat: add typings for pyo3 #676
* refactor: remove unused old code 3ffd1d9
* fix(deps): update babel monorepo to v7.24.7 b4aebaf
* refactor: add new abstraction for match_tree 079bc7d
-------------------------------------------------------------------
Wed Jun 5 06:17:51 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.6:
* fix: add Edit to export list #1186
* feat: add modify edit range feature in pyo3 1e31253
* test: add test for modifying edit 7044811
* fix: addClass Edit in pyo3 d81c6c3
-------------------------------------------------------------------
Mon Jun 3 06:26:04 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.5:
* feat: support all languages in napi #1170
* Breaking change: refactor: rename Frontend Language to Lang c582c16
* refactor: move find files operations to standalone files 8ebb888
* feat: support more languages in napi 19e3baa
-------------------------------------------------------------------
Mon May 27 07:09:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.4:
* feat: use var defined in utils in transform/fix #1155
* fix: fix pattern polluting env #1164
* test: add python fix test #1161
* feat: add fix related feature to pyo3 #1159
* test: add test for napi test #1160
* feat: add commit_fix and fix to napi #1158
* fix(deps): update babel monorepo to v7.24.6 0898b55
* fix(deps): update dependency @swc/core to v1.5.7 9beda6e
* feat: add edit/fix sketch 6817854
-------------------------------------------------------------------
Mon May 13 14:06:01 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.3:
* fix: fix napi test #1140
* fix: use dumb implementation for web-tree-sitter 5cb7052
* chore: fix asset names 70cef40
* fix af20be8
-------------------------------------------------------------------
Mon May 13 06:51:13 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.2:
* fix: fix releases 3a6e553
* fix: fix efaa1ca
* fix: debug e39fd12
-------------------------------------------------------------------
Mon May 13 06:50:55 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.1:
* feat(language): Add support for Haskell via tree-sitter-haskell #1128
* fix: add ast-grep to release #1130
* fix(deps): update dependency @swc/core to v1.5.5 31428dd
* fix(deps): update dependency tree-sitter-typescript to v0.21.1 188525d
* chore(deps): update dependency @types/node to v20.12.11 3fe7780
-------------------------------------------------------------------
Mon May 13 06:50:40 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.22.0:
* test: add string test case back in Rust #1060
* chore: bump tree-sitter version 5b45bd7
* fix: update wasm crate ce9acba
* fix: update ts deps 3a67b6b
-------------------------------------------------------------------
Tue May 7 06:37:14 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.21.4:
* fix: build from source #1125
* doc: update how to install via cargo #1118
* feat: report undefined util rules #1106
* Breaking change: feat: separate RuleCoreError and RuleConfigError d96efa9
* refactor: move Transformation into a standalone module b51cc95
* fix(deps): update dependency @babel/core to v7.24.5 77ea8bd
-------------------------------------------------------------------
Fri May 3 05:34:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.21.3:
* feat: make pattern more permissive #1087
* refactor: further simplify test case 8188473
* refactor: make rewrite test simplier 5a754ef
* test: add test for contextual pattern defined var 2d6bae8
-------------------------------------------------------------------
Thu May 2 10:23:46 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.21.2:
* feat: Allow to use meta variable captured outside of rewrite rule inside the rewriter #1072
* refactor: move rule_core test out of rule_core 1e8af4c
* feat: move check variable usage out to a standalone file f086d10
* refactor: move check var around cfe3529
-------------------------------------------------------------------
Mon Apr 29 06:59:15 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.21.1:
* feat: find defined vars in utils cbc6534
* fix: add referent rule stack overflow test case f7f24e1
* feat: add utils defined vars 59001eb
-------------------------------------------------------------------
Mon Apr 29 06:58:52 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.21.0:
* feat: report unused rewriters #1064
* feat: report undefined error in fix #1070
* feat: define the resolution order of meta variables #1068
* feat: export used meta-var in transform #1069
* feat: export meta variables defined in transform #1066
* feat: export meta variables defined in constraints/rules #1067
* test: add test for Pattern::defined_vars method #1065
* feat: analyze meta variables defined in pattern #1065
* feat: add field id Error for relational rule #1059
* feat: support rewrtier check in sub-rule eb4c47c
* test: add undefined rewriter test d56ad74
* feat: add used_vars in TemplateFix 641d3b4
-------------------------------------------------------------------
Thu Apr 11 14:24:36 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.5:
* fix: add parse global util error 2482a86
* fix: ignore test 6c2cd46
-------------------------------------------------------------------
Mon Apr 8 12:39:13 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.4:
* fix: fix new deprecation note of Rust 2024 a70565e
* fix: fix quickfix fef3dfc
* fix: better fix message e0b5875
-------------------------------------------------------------------
Mon Apr 8 06:17:06 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.3:
* feat(lsp): run "source.fixAll.ast-grep" onsave #1021
* test: move the integration-test to test folder f2ff77a
* chore: cargo update 83394e9
* refactor: move logging and io out of on_apply_all_fix cd79cda
-------------------------------------------------------------------
Thu Mar 28 07:23:34 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.2:
* feat: make test --update-all not report error #771
* fix: fix update cases f8132a4
* refactor: less indentation for interactive reporter 203bd35
* feat: improve accept 441a548
-------------------------------------------------------------------
Mon Mar 25 06:21:57 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.1:
* feat: respect suppression in lsp #1019
-------------------------------------------------------------------
Mon Mar 25 06:21:41 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.20.0:
* test: add test for error suppression in scan #1007
* refactor: merge CombinedScan::scan and CombinedScan::diff #1011
* feat: report error count instead of file count #1009
* feat: suppress specific rule #1005
* fix: skip suppressed error #1006
* feat: support error/warning suppression #446
* fix(deps): update babel monorepo da9a938
* fix(deps): update dependency @swc/core to v1.4.8 d81365a
* feat: add more states for rule suppression 41a058c
-------------------------------------------------------------------
Mon Mar 11 07:22:42 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.19.4:
* LSP default message for diagnostics #970
* feat: Add error messaging for rule file parsing failures #968
* feat: add html testing and tweak html #977
* fix(deps): update dependency @babel/core to v7.24.0 a14741d
* fix(deps): update dependency @swc/core to v1.4.6 4a397f4
* fix(deps): update rust crate pyo3 to 0.20.3 23653c2
-------------------------------------------------------------------
Mon Feb 26 07:20:23 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.19.3:
* fix(deps): update dependency @swc/core to v1.4.2 67450cb
* refactor: move rewriters to SerializableRuleConfig d98c062
* fix(deps): update rust crate inquire to 0.7.0 86ec845
-------------------------------------------------------------------
Fri Feb 23 05:55:03 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.19.2:
* fix: improve expando char replacement #883
* feat(napi): add support for napi linux x64 musl c4d7902
* fix: fix wrong spacing matching 0e8b4f0
* Update README.md 9636a1a
-------------------------------------------------------------------
Tue Feb 20 05:56:33 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.19.1:
* fix: avoid input stream when --update-all #943
* fix: update cargo lock 8a893e7
* fix(deps): update dependency @swc/core to v1.4.1 d18fd70
* chore(deps): update dependency @types/node to v20.11.19 40d3fa0
-------------------------------------------------------------------
Thu Feb 15 08:05:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.19.0:
* Breaking change: refactor: remove unused type generic 9b13d41
* Breaking change: fix: update pyo3 test ff10e81
* fix: fix parallel thread output be230ca
-------------------------------------------------------------------
Thu Feb 1 08:01:43 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.18.1:
* Breaking change: refactor: use more concise name 6a4a17c
-------------------------------------------------------------------
Wed Jan 31 15:05:18 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.18.0:
* Breaking change: refactor: remove IndentSensitive trait #868
* feat: add support for rewriters #855
* Breaking change: refactor: rename RuleWithConstraints to RuleCore #862
* feat: move fix to SerializableRuleCore #859
* Breaking change: refactor: remove MetaVarMatchers beb6f50
* Breaking change: feat: move fixer to RuleCore 8a43a26
* Breaking change: refactor: move language out of SerializableRuleCore c5e0dc8
* Breaking change: refactor: remove Content generic from Fixer 87bbf93
* Breaking change: feat: improve get_fixer signature e629e0f
* Breaking change: refactor: make TemplateFix non-generic 0f462a5
* feat: migrate constraints to Rule 230ee9c
* refactor: move SerializableRuleCore to rule_core mod 3a303c1
-------------------------------------------------------------------
Sat Jan 13 07:57:37 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.17.1:
* feat: respect user's language extension option #848
-------------------------------------------------------------------
Fri Jan 12 07:36:33 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.17.0:
* Breaking change: feat: change get_fixer to return Fixer 07c5363
* feat: add modify_range for tweaking fix range selection eeb2f98
* feat: rename modify_range -> get_replace_range 54837df
-------------------------------------------------------------------
Sat Jan 6 09:11:59 UTC 2024 - Michael Vetter <mvetter@suse.com>
- Update to 0.16.1:
* feat: add support for bash and php #639
* Breaking change: fix: more strict meta var parsing 13ad32b
* Breaking change: refactor: remove thrift language 26ecdf6
* fix(deps): update dependency @swc/core to v1.3.102 9ca9711
-------------------------------------------------------------------
Sat Dec 30 13:05:35 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Update to 0.16.0:
* feat: add language globs to findInFiles in napi #780
* Breaking change: fix: rename MetaVar for better naming #805
* refactor: reorgnanize napi file structure 93f8577
* refactor: move file type related function out of lib 64e33a3
* feat: handle FileOption in LangOption::infer 7bc3efe
-------------------------------------------------------------------
Mon Dec 18 07:57:39 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Update to 0.15.1:
* feat: support mutliple rules in -r and --inline-rules #786
* refactor: unify run_worker and run_std_in #785
* Breaking change: feat: --stdin now always awaits user input #791
* feat: support --inline-rules option for sg scan #396
* refactor: separate PathWorker and StdInWorker and Worker ef3d8ad
* test: add test cases for sg scan ed35c71
* fix: revert github action a2f22d8
-------------------------------------------------------------------
Sat Dec 16 11:37:22 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Update to 0.15.0:
* Breaking change: feat: reduce metavar_env string allocation e1ab015
* Breaking change: fix: remove pattern as replacer f6e4293
* Breaking change: feat: better metavar detection e1ab18a
-------------------------------------------------------------------
Tue Dec 12 08:11:43 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Update to 0.14.4:
* fix: use tempfile to remove vuln #765
* chore(deps): update dependency typescript to v5.3.3 dbac17d
* chore(deps): update dependency @napi-rs/cli to v2.17.0 f2d32be
* chore(deps): update dependency prettier to v3.1.1 990f09b
-------------------------------------------------------------------
Mon Dec 11 08:40:58 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Update to 0.14.3:
* feat: add getTransformed in napi #551
* fix: load custom languages in new command #751
* chore(deps): update dependency ava to v6 496eb9d
* feat: add support for Elixir 57edde1
* feat: rename fixer to TemplateFix 5b53ce0
-------------------------------------------------------------------
Sun Dec 10 19:33:19 UTC 2023 - Michael Vetter <mvetter@suse.com>
- Initial package of ast-grep 0.14.2 for openSUSE

50
ast-grep.spec Normal file
View File

@ -0,0 +1,50 @@
#
# spec file for package ast-grep
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: ast-grep
Version: 0.26.1+0
Release: 0
Summary: A CLI tool for code structural search, lint and rewriting
License: MIT
URL: https://ast-grep.github.io/
Source0: %{name}-%{version}.tar.zst
Source1: vendor.tar.zst
Source2: cargo_config
BuildRequires: cargo-packaging
BuildRequires: gcc-c++
%description
ast-grep(sg) is a CLI tool for code structural search, lint, and rewriting.
%prep
%autosetup -p1 -a1
install -D -m 644 %{SOURCE2} .cargo/config
%build
%{cargo_build} --locked
%install
install -D -d -m 0755 %{buildroot}%{_bindir}
install -m 0755 %{_builddir}/%{name}-%{version}/target/release/%{name} %{buildroot}%{_bindir}/%{name}
%files
%{_bindir}/%{name}
%license LICENSE
%doc CHANGELOG.md README.md
%changelog

5
cargo_config Normal file
View File

@ -0,0 +1,5 @@
[source.crates-io]
replace-with = "vendored-sources"
[source.vendored-sources]
directory = "vendor"

3
vendor.tar.zst Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f4b59930cd484ec75c0077cf06bca2f2c5179a8c18d240bd8cf5acf419f8f4a
size 30276058