Change license to UPL-1.0

Closes https://github.com/rtfeldman/roc/issues/1199
This commit is contained in:
Richard Feldman 2021-04-14 23:26:14 -04:00
parent 1b9898d053
commit 0a50b0b488
32 changed files with 41 additions and 227 deletions

View file

@ -124,10 +124,8 @@ pub fn finish_parsing_float(raw: &str) -> Result<f64, (&str, FloatErrorKind)> {
/// Integer parsing code taken from the rust libcore,
/// pulled in so we can give custom error messages
///
/// The Rust Project is dual-licensed under Apache 2.0 and MIT terms.
/// As roc is Apache licensed, we use this rust code under the apache 2.0 license
///
/// Thanks to the rust-lang project and its contributors
/// The Rust Project is dual-licensed under either Apache 2.0 or MIT,
/// at the user's choice. Thanks to the Rust project and its contributors!
trait FromStrRadixHelper: PartialOrd + Copy {
fn min_value() -> Self;