1
0
Fork 0

Remove instrumentation from tag::get_tags

This commit is contained in:
Adrian Hedqvist 2025-04-02 23:57:20 +02:00
parent 87b9b713b2
commit e7bc58cfe6
Signed by: tollyx
SSH key fingerprint: SHA256:NqZilNUilqR38F1LQMrz2E65ZsA621eT3lO+FqHS48Y

View file

@ -1,7 +1,6 @@
use std::collections::HashMap;
use serde_derive::Serialize;
use tracing::instrument;
use crate::page::Page;
@ -12,7 +11,6 @@ pub struct Tag {
pub posts: Vec<String>,
}
#[instrument(skip(posts))]
pub fn get_tags<'a>(posts: impl IntoIterator<Item = &'a Page>) -> HashMap<String, Tag> {
let mut tags: HashMap<String, Tag> = HashMap::new();