hashes/hashes.rs
1use leaf_protocol::{components::Name, Component};
2
3/// This is really just a test example to sanity check or view component hashes during development.
4#[tokio::main]
5pub async fn main() -> anyhow::Result<()> {
6 println!("Name Schema ID: {}", Name::schema_id());
7 println!("Name Schema ID: {:?}", Name::schema_id().as_bytes());
8 Ok(())
9}