├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples └── demo.rs ├── src └── lib.rs └── tests └── signatures.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/examples/demo.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/signatures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ondt/extfn/HEAD/tests/signatures.rs --------------------------------------------------------------------------------