From 20cfb4e7e1d00edcff531bf3f1c05eb7a79cb2a2 Mon Sep 17 00:00:00 2001 From: viridian Date: Mon, 6 May 2024 17:04:11 +0200 Subject: [PATCH] Remove feature flag: ascii_char --- src/index.rs | 1 - src/lib.rs | 1 - src/main.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/src/index.rs b/src/index.rs index 735213a..3102ee7 100644 --- a/src/index.rs +++ b/src/index.rs @@ -3,7 +3,6 @@ use serde::Serialize; use serde_json::value::Value; use std::{collections::HashMap, fmt::Debug}; use tera::{Context, Tera}; -// use markup5ever::interface::tree_builder::TreeSink; #[derive(Constructor, Debug, Serialize)] pub struct BlogPost { diff --git a/src/lib.rs b/src/lib.rs index 71bc29d..73b69b1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![feature(str_split_remainder)] -#![feature(ascii_char)] use chrono::prelude::*; use derive_more::Constructor; use markdown::{to_html_with_options, CompileOptions, Options}; diff --git a/src/main.rs b/src/main.rs index 7bf3048..5c7671b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,3 @@ -#![feature(ascii_char)] use std::fs::read_to_string; pub mod config; pub mod emoji;