diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-11-23 02:01:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-23 02:01:09 +0100 |
commit | ea940fcb74abce67b927788e4f9f64fc63073d37 (patch) | |
tree | cb0c9db4008e5fec07c9655dea29513614f5f7b9 /codegen/src/main.rs | |
parent | a035f334a108f4a694cf022e063edb9c8ac349ad (diff) | |
download | r-alacritty-vte-ea940fcb74abce67b927788e4f9f64fc63073d37.tar.gz r-alacritty-vte-ea940fcb74abce67b927788e4f9f64fc63073d37.tar.bz2 r-alacritty-vte-ea940fcb74abce67b927788e4f9f64fc63073d37.zip |
Update to Rust 2018
This moves all crates in the workspace to the latest Rust standard and
resolves various style and formatting issues.
Fixes #32.
Diffstat (limited to 'codegen/src/main.rs')
-rw-r--r-- | codegen/src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/codegen/src/main.rs b/codegen/src/main.rs index 0d21577..7cc6cd0 100644 --- a/codegen/src/main.rs +++ b/codegen/src/main.rs @@ -1,11 +1,11 @@ #![allow(dead_code)] -extern crate syntex; -extern crate syntex_syntax; - -mod ext; use std::path::Path; +use syntex; + +mod ext; + fn main() { // Expand VT parser state table let mut registry = syntex::Registry::new(); |