├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE.txt ├── README.md └── src ├── api_calls ├── file_calls.rs ├── fingerprint_calls.rs ├── mod.rs └── mod_calls.rs ├── lib.rs ├── request.rs └── structures ├── common_structs.rs ├── file_structs.rs ├── fingerprint_structs.rs ├── mod.rs └── mod_structs.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /target 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/README.md -------------------------------------------------------------------------------- /src/api_calls/file_calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/api_calls/file_calls.rs -------------------------------------------------------------------------------- /src/api_calls/fingerprint_calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/api_calls/fingerprint_calls.rs -------------------------------------------------------------------------------- /src/api_calls/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/api_calls/mod.rs -------------------------------------------------------------------------------- /src/api_calls/mod_calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/api_calls/mod_calls.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/request.rs -------------------------------------------------------------------------------- /src/structures/common_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/structures/common_structs.rs -------------------------------------------------------------------------------- /src/structures/file_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/structures/file_structs.rs -------------------------------------------------------------------------------- /src/structures/fingerprint_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/structures/fingerprint_structs.rs -------------------------------------------------------------------------------- /src/structures/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/structures/mod.rs -------------------------------------------------------------------------------- /src/structures/mod_structs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gorilla-devs/furse/HEAD/src/structures/mod_structs.rs --------------------------------------------------------------------------------