├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ └── deps.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── changelog.sh ├── cliff.toml ├── clippy.toml ├── deny.toml ├── release.toml ├── rustfmt.toml └── src └── lib.rs /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @danipopes @mattsse @Evalir 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/.github/workflows/deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/README.md -------------------------------------------------------------------------------- /changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/changelog.sh -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/cliff.toml -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | msrv = "1.65" 2 | -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/deny.toml -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/release.toml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rjected/erc3770/HEAD/src/lib.rs --------------------------------------------------------------------------------