Move syn_codegen to just codegen
diff --git a/.travis.yml b/.travis.yml
index 807f835..b33db5c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,7 +46,7 @@
           cargo clippy --features 'full fold visit visit_mut' -- -Dclippy
           ;;
         codegen)
-          (cd syn_codegen && cargo run) &&
+          (cd codegen && cargo run) &&
           git diff --exit-code
           ;;
         *)
diff --git a/syn_codegen/Cargo.toml b/codegen/Cargo.toml
similarity index 100%
rename from syn_codegen/Cargo.toml
rename to codegen/Cargo.toml
diff --git a/syn_codegen/README.md b/codegen/README.md
similarity index 100%
rename from syn_codegen/README.md
rename to codegen/README.md
diff --git a/syn_codegen/src/main.rs b/codegen/src/main.rs
similarity index 100%
rename from syn_codegen/src/main.rs
rename to codegen/src/main.rs