We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc178d commit 5712b8cCopy full SHA for 5712b8c
scopegraphs-lib/src/lib.rs
@@ -1,3 +1,5 @@
1
+#![deny(missing_docs)]
2
+
3
pub mod completeness;
4
pub mod containers;
5
pub mod future_wrapper;
scopegraphs-macros/src/lib.rs
@@ -1,8 +1,11 @@
use crate::label::impl_label;
use crate::order::OrderInput;
use crate::regex::RegexInput;
6
7
use proc_macro::TokenStream;
8
9
use syn::{parse_macro_input, DeriveInput};
10
11
mod label;
scopegraphs-regular-expressions/src/lib.rs
use proc_macro2::{LexError, TokenStream};
use thiserror::Error;
scopegraphs/src/lib.rs
pub use scopegraphs_lib::*;
pub use scopegraphs_macros::*;
pub use scopegraphs_regular_expressions::*;
0 commit comments