small crate that defines a static_pubkey!
macro, used for compile-time parsing of public key strings into byte arrays for near 0-cost static public keys defined in your source code. The actual code is taken from here.
```rust
mod test { use staticpubkey::staticpubkey; #[test] fn example() { let key = staticpubkey!("GjphYQcbP1m3FuDyCTUJf2mUMxKPE3j6feWU1rxvC7Ps"); assert!(key.tostring() == "GjphYQcbP1m3FuDyCTUJf2mUMxKPE3j6feWU1rxvC7Ps"); } }