Skip to content

Commit

Permalink
Add appropriate license details [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpclark committed Oct 12, 2017
1 parent 39038ce commit 45eeb78
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 1 deletion.
7 changes: 7 additions & 0 deletions src/core.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Copyright 2017 Daniel P. Clark & other abrute Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http:https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http:https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use std::sync::Mutex;
use digits::Digits;
use std::io::{self, Write};
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// http:https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http:https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//

extern crate digits;
extern crate rayon;
use digits::Digits;
Expand Down
7 changes: 7 additions & 0 deletions src/process_input.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Copyright 2017 Daniel P. Clark & other abrute Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http:https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http:https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use digits::BaseCustom;
use super::result::Error;

Expand Down
7 changes: 7 additions & 0 deletions src/result.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Copyright 2017 Daniel P. Clark & other abrute Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http:https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http:https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use std::fmt;
use std::error::Error as StdError;

Expand Down
7 changes: 7 additions & 0 deletions src/validators.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Copyright 2017 Daniel P. Clark & other abrute Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http:https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http:https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use std::process::{Command,Stdio};
use super::result::Error;
use std::path::Path;
Expand Down

0 comments on commit 45eeb78

Please sign in to comment.