├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── lint.yml │ └── nightly.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── via_all_providers.rs ├── via_auth_provider.rs ├── via_kutt_custom_host_provider.rs └── via_single_provider.rs └── src ├── client.rs ├── lib.rs ├── providers.rs └── request.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: iddm 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.github/workflows/nightly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/via_all_providers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/examples/via_all_providers.rs -------------------------------------------------------------------------------- /examples/via_auth_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/examples/via_auth_provider.rs -------------------------------------------------------------------------------- /examples/via_kutt_custom_host_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/examples/via_kutt_custom_host_provider.rs -------------------------------------------------------------------------------- /examples/via_single_provider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/examples/via_single_provider.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/providers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/src/providers.rs -------------------------------------------------------------------------------- /src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iddm/urlshortener-rs/HEAD/src/request.rs --------------------------------------------------------------------------------