()
| 12 | use serde_json::{json, Map, Value}; |
| 13 | |
| 14 | fn dev_identity() -> (Identity, KeyPair) { |
| 15 | // M0 non-production dev identity (plaintext keys — see crate docs). |
| 16 | let kp = KeyPair::generate(); |
| 17 | let id = Identity::new("lee", &kp); |
| 18 | (id, kp) |
| 19 | } |
| 20 | |
| 21 | fn frontmatter() -> Map<String, Value> { |
| 22 | json!({ |
no outgoing calls
no test coverage detected