Changeset - cfcb12a625ff
[Not reviewed]
0 2 0
mh - 3 years ago 2022-02-08 14:01:38
contact@maxhenger.nl
Bump rust compiler edition to 2021
2 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
bin-compiler/Cargo.toml
Show inline comments
 
@@ -6,7 +6,7 @@ authors = [
 
    "Christopher Esterhuyse <esterhuy@cwi.nl>",
 
    "Hans-Dieter Hiep <hdh@cwi.nl>"
 
]
 
edition = "2018"
 
edition = "2021"
 

	
 
[dependencies]
 
reowolf_rs = { path = "../" }
bin-compiler/src/main.rs
Show inline comments
 
@@ -4,7 +4,7 @@ use reowolf_rs as rw;
 
fn main() {
 
    let app = App::new("rwc")
 
        .author("Henger, M.")
 
        .version(env!(CARGO_PKG_VERSION))
 
        .version(env!("CARGO_PKG_VERSION"))
 
        .about("Reowolf compiler")
 
        .arg(
 
            Arg::new("input")
 
@@ -13,6 +13,7 @@ fn main() {
 
                .help("input files")
 
                .required(true)
 
                .takes_value(true)
 
                .multiple_occurrences(true)
 
        );
 

	
 
    let app = app.get_matches();
0 comments (0 inline, 0 general)