Skip to content

Commit

Permalink
Warnings as errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenhaahr committed Oct 21, 2024
1 parent cc0d9b8 commit bfcfa8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use std::{
collections::BTreeMap,
fmt::{Debug, Display},
};
use winnow::stream::Accumulate;

pub struct UntypedLOLA;
// pub trait TypedStreamData<T: Type<TS>, TS: TypeSystem>: StreamData<TS> {}
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#![recursion_limit = "256"]
#![deny(warnings)]

pub mod core;
pub use core::{
ConcreteStreamData, InputProvider, Monitor, MonitoringSemantics, OutputStream, Specification,
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![deny(warnings)]
use futures::StreamExt;
use trustworthiness_checker::{self as tc, core::TypeCheckableSpecification, parse_file, Monitor};

Expand Down

0 comments on commit bfcfa8b

Please sign in to comment.