├── .github └── workflows │ ├── release-plz.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── EN-README.md ├── LICENSE ├── README.md ├── assets └── demo.png ├── cliff.toml ├── release-plz.toml └── src ├── cli.rs └── main.rs /.github/workflows/release-plz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/.github/workflows/release-plz.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/Cargo.toml -------------------------------------------------------------------------------- /EN-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/EN-README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/assets/demo.png -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/cliff.toml -------------------------------------------------------------------------------- /release-plz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/release-plz.toml -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k3ii/kouran/HEAD/src/main.rs --------------------------------------------------------------------------------