add template for rust
This commit is contained in:
parent
3ff27fc498
commit
9580c3b03b
|
@ -0,0 +1,16 @@
|
||||||
|
[package]
|
||||||
|
name = "template"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
publish = false
|
||||||
|
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
||||||
|
license = "MIT"
|
||||||
|
description = "No description yet"
|
||||||
|
readme = "README.md"
|
||||||
|
homepage = "https://git.cscherr.de/PlexSheep/rs-base"
|
||||||
|
repository = "https://git.cscherr.de/PlexSheep/rs-base"
|
||||||
|
keywords = ["template"]
|
||||||
|
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2024 PlexSheep
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
cargo check --all-features
|
||||||
|
echo ">>>>>>>> PUBLISHING RELEASE FOR REPO"
|
||||||
|
bash scripts/release.sh
|
||||||
|
echo ">>>>>>>> PUBLISHING TO CRATES.IO NEXT"
|
||||||
|
sleep 2
|
||||||
|
cargo publish
|
||||||
|
echo ">>>>>>>> PUBLISHING TO CSCHERR.DE NEXT"
|
||||||
|
sleep 2
|
||||||
|
cargo publish --registry cscherr
|
|
@ -0,0 +1,24 @@
|
||||||
|
#!/bin/bash
|
||||||
|
TOKEN=$(cat ~/.git-credentials | grep 'git.cscherr.de' | grep -P '(?:)[^:]*(?=@)' -o)
|
||||||
|
NEW_VERSION=$(cat Cargo.toml | rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1')
|
||||||
|
GIT_COMMIT_SHA=$(git rev-parse HEAD)
|
||||||
|
REPO=${PWD##*/} # name of cwd
|
||||||
|
BODY="
|
||||||
|
$(git log $(git describe --tags --abbrev=0)..HEAD --pretty="- %s" --oneline --decorate)
|
||||||
|
"
|
||||||
|
USER=PlexSheep
|
||||||
|
git tag "v$NEW_VERSION" || echo "could not tag"
|
||||||
|
curl -X 'POST' \
|
||||||
|
'https://git.cscherr.de/api/v1/repos/PlexSheep/'$REPO'/releases' \
|
||||||
|
-H 'accept: application/json' \
|
||||||
|
-H "Authorization: token $TOKEN" \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d '{
|
||||||
|
"body": "'"$BODY"'",
|
||||||
|
"draft": false,
|
||||||
|
"name": "v'$NEW_VERSION'",
|
||||||
|
"prerelease": true,
|
||||||
|
"tag_name": "v'$NEW_VERSION'",
|
||||||
|
"target_commitish": "'$GIT_COMMIT_SHA'"
|
||||||
|
}' | python -m json.tool
|
||||||
|
git push || echo "could not push"
|
|
@ -0,0 +1,3 @@
|
||||||
|
fn main() {
|
||||||
|
println!("Hello, world!");
|
||||||
|
}
|
Loading…
Reference in New Issue