├── .gitignore ├── .travis.yml ├── CHANGES.md ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── caveat.rs ├── error.rs ├── lib.rs ├── token.rs ├── v1.rs └── verifier.rs └── tests └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/CHANGES.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/caveat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/caveat.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/token.rs -------------------------------------------------------------------------------- /src/v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/v1.rs -------------------------------------------------------------------------------- /src/verifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/src/verifier.rs -------------------------------------------------------------------------------- /tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cryptosphere/macaroons-rs/HEAD/tests/lib.rs --------------------------------------------------------------------------------