diff --git a/examples/basic.rs b/examples/basic.rs index 9fb8aaa..876d131 100644 --- a/examples/basic.rs +++ b/examples/basic.rs @@ -1,4 +1,6 @@ -extern crate term_grid; +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use term_grid::{Direction, Filling, Grid, GridOptions}; // This produces: diff --git a/examples/big.rs b/examples/big.rs index 64337f0..6456497 100644 --- a/examples/big.rs +++ b/examples/big.rs @@ -1,7 +1,6 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -extern crate term_grid; use term_grid::{Direction, Filling, Grid, GridOptions}; fn main() { diff --git a/src/lib.rs b/src/lib.rs index 2372234..22540ac 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,6 @@ +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + #![warn(future_incompatible)] #![warn(missing_copy_implementations)] #![warn(missing_docs)] diff --git a/tests/test.rs b/tests/test.rs index 16c85e8..3cad808 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -1,3 +1,6 @@ +// For the full copyright and license information, please view the LICENSE +// file that was distributed with this source code. + use term_grid::{Direction, Filling, Grid, GridOptions}; #[test]