add license headers and remove extern crate

This commit is contained in:
Terts Diepraam
2023-11-03 21:09:16 +01:00
parent 0979c97864
commit 925b080d09
4 changed files with 9 additions and 2 deletions
+3 -1
View File
@@ -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:
-1
View File
@@ -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() {
+3
View File
@@ -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)]
+3
View File
@@ -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]