├── .github └── workflows │ └── release.yml ├── .gitignore ├── .releaserc.json ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── README.md ├── package.json ├── renovate.json └── src ├── main.rs └── paste.rs /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | node_modules 3 | .vscode -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/.releaserc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/renovate.json -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/paste.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SphericalKat/katbin-cli/HEAD/src/paste.rs --------------------------------------------------------------------------------