File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1+ //
2+ // Leaf.swift
3+ //
4+ //
5+ // Created by Evan Anderson on 10/8/24.
6+ //
7+
8+ import Utilities
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ let package = Package(
1717 //.package(name: "BBHTML", url: "https://github.com/BinaryBirds/swift-html", from: "1.7.0") // conflicting package name
1818 . package ( url: " https://github.com/JohnSundell/Plot " , from: " 0.14.0 " ) ,
1919 //.package(url: "https://github.com/toucansites/toucan", from: "1.0.0-alpha.1"), // unstable
20- //.package(url: "https://github.com/robb/Swim", from: "0.4.0") // compile problem
21- . package ( url: " https://github.com/dokun1/Vaux " , from: " 0.2.0 " ) // result limitation
20+ //.package(url: "https://github.com/robb/Swim", from: "0.4.0"), // compile problem
21+ . package ( url: " https://github.com/dokun1/Vaux " , from: " 0.2.0 " ) , // result limitation
22+ . package ( url: " https://github.com/vapor/leaf " , from: " 4.4.0 " ) ,
2223 ] ,
2324 targets: [
2425 . target(
@@ -33,6 +34,14 @@ let package = Package(
3334 ] ,
3435 path: " Benchmarks/Elementary "
3536 ) ,
37+ . target(
38+ name: " TestLeaf " ,
39+ dependencies: [
40+ " Utilities " ,
41+ . product( name: " Leaf " , package : " Leaf " )
42+ ] ,
43+ path: " Benchmarks/Leaf "
44+ ) ,
3645 . target(
3746 name: " TestPlot " ,
3847 dependencies: [
@@ -105,6 +114,7 @@ let package = Package(
105114 dependencies: [
106115 " Utilities " ,
107116 " TestElementary " ,
117+ " TestLeaf " ,
108118 " TestPlot " ,
109119 " TestSwiftHTMLBB " ,
110120 " TestSwiftHTMLKit " ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ let package = Package(
1616 ) ,
1717 ] ,
1818 dependencies: [
19- . package ( url: " https://github.com/apple /swift-syntax.git " , from: " 600.0.0 " ) ,
19+ . package ( url: " https://github.com/swiftlang /swift-syntax.git " , from: " 600.0.0 " ) ,
2020 ] ,
2121 targets: [
2222 . target(
You can’t perform that action at this time.
0 commit comments