Skip to content

Commit 38d4245

Browse files
committed
ci: forbid unsafe code
1 parent 9d86200 commit 38d4245

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
//! The main API involves around using builders to create structured Markdown
44
//! elements that can be combined together into a Markdown document
55
6+
#![forbid(unsafe_code)]
7+
68
pub mod builders;
79
pub mod traits;
810
pub mod transforms;
911
pub mod types;
10-
1112
pub use crate::{
1213
builders::{image::ImageBuilder, link::LinkBuilder, list::ListBuilder},
1314
traits::{AsFooter, MarkdownElement},

0 commit comments

Comments
 (0)