Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
nopeless committed Oct 23, 2023
0 parents commit 0e6fe09
Show file tree
Hide file tree
Showing 6 changed files with 418 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# .github/workflows/release.yml

on:
release:
types: [created]

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
RUSTTARGET: x86_64-pc-windows-gnu
EXTRA_FILES: "README.md LICENSE"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
311 changes: 311 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "ico-to-cur"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ico = "0.3.0"
structopt = "0.3.26"
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Simple ICO to CUR converter

```yaml
ico-to-cur 0.1.0

USAGE:
ico-to-cur.exe [OPTIONS] <input>

FLAGS:
-h, --help Prints help information
-V, --version Prints version information

OPTIONS:
-o, --output <output> Output file
-x, --x <x> X coordinate
-y, --y <y> Y coordinate

ARGS:
<input>
```
# Installation
## Cargo
If you have cargo, just clone repository and cargo run
## No cargo
Loading

0 comments on commit 0e6fe09

Please sign in to comment.