@@ -14,6 +14,7 @@ let package = Package(
1414 . executable( name: " httpd-helloworld " , targets: [ " httpd-helloworld " ] ) ,
1515 . executable( name: " connect-static " , targets: [ " connect-static " ] ) ,
1616 . executable( name: " express-simple " , targets: [ " express-simple " ] ) ,
17+ . executable( name: " httpproxy " , targets: [ " httpproxy " ] ) ,
1718 . executable( name: " servedocc " , targets: [ " servedocc " ] ) ,
1819 . executable( name: " todomvc " , targets: [ " todomvc " ] ) ,
1920 . executable( name : " express-simple-lambda " ,
@@ -24,7 +25,7 @@ let package = Package(
2425 // A lot of packages for demonstration purposes, only add what you
2526 // actually need in your own project.
2627 . package ( url: " https://github.com/Macro-swift/Macro.git " ,
27- from: " 0.8.8 " ) ,
28+ from: " 0.8.10 " ) ,
2829 . package ( url: " https://github.com/Macro-swift/MacroExpress.git " ,
2930 from: " 0.8.6 " ) ,
3031 . package ( url: " https://github.com/Macro-swift/MacroLambda.git " ,
@@ -35,6 +36,7 @@ let package = Package(
3536
3637 targets: [
3738 . target( name: " httpd-helloworld " , dependencies: [ " Macro " ] ) ,
39+ . target( name: " httpproxy " , dependencies: [ " Macro " ] ) ,
3840 . target( name: " connect-static " , dependencies: [ " MacroExpress " ] ) ,
3941 . target( name: " express-simple " , dependencies: [ " MacroExpress " , " cows " ] ) ,
4042 . target( name: " servedocc " , dependencies: [ " MacroExpress " ] ) ,
0 commit comments