├── .gitignore ├── .rustfmt.toml ├── .travis.yml ├── Cargo.toml └── rustivitypub ├── Cargo.toml └── src └── lib.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lo48576/_rustivitypub_old1/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lo48576/_rustivitypub_old1/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ 3 | "rustivitypub", 4 | ] 5 | -------------------------------------------------------------------------------- /rustivitypub/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lo48576/_rustivitypub_old1/HEAD/rustivitypub/Cargo.toml -------------------------------------------------------------------------------- /rustivitypub/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lo48576/_rustivitypub_old1/HEAD/rustivitypub/src/lib.rs --------------------------------------------------------------------------------