@@ -20,8 +20,6 @@ extension Target.Dependency {
2020 static var markdownHtmlRendering : Self { . product( name: " Markdown HTML Rendering " , package : " swift-markdown-html-rendering " ) }
2121 static var css : Self { . product( name: " CSS " , package : " swift-css " ) }
2222 static var cssTheming : Self { . product( name: " CSS Theming " , package : " swift-css " ) }
23- static var dependencies : Self { . product( name: " Dependencies " , package : " swift-dependencies " ) }
24- static var dependenciesTestSupport : Self { . product( name: " DependenciesTestSupport " , package : " swift-dependencies " ) }
2523 static var orderedCollections : Self { . product( name: " OrderedCollections " , package : " swift-collections " ) }
2624 static var translating : Self { . product( name: " Translating " , package : " swift-translating " ) }
2725 static var standards : Self { . product( name: " Standards " , package : " swift-standards " ) }
@@ -54,18 +52,17 @@ let package = Package(
5452 )
5553 ] ,
5654 dependencies: [
57- . package ( url: " https://github.com/apple/swift-collections " , from: " 1.1.2 " ) ,
58- . package ( url: " https://github.com/coenttb/swift-html-rendering " , from: " 0.1.12 " ) ,
59- . package ( url: " https://github.com/coenttb/swift-markdown-html-rendering " , from: " 0.1.1 " ) ,
60- . package ( url: " https://github.com/coenttb/swift-css " , from: " 0.3.1 " ) ,
55+ . package ( url: " https://github.com/apple/swift-collections " , from: " 1.3.0 " ) ,
56+ . package ( url: " https://github.com/coenttb/swift-html-rendering " , from: " 0.1.14 " ) ,
57+ . package ( url: " https://github.com/coenttb/swift-markdown-html-rendering " , from: " 0.1.2 " ) ,
58+ . package ( url: " https://github.com/coenttb/swift-css " , from: " 0.4.0 " ) ,
6159 . package ( url: " https://github.com/coenttb/swift-svg " , from: " 0.3.0 " ) ,
62- . package ( url: " https://github.com/coenttb/swift-translating " , from: " 0.0.1 " ) ,
63- . package ( url: " https://github.com/pointfreeco/swift-dependencies " , from: " 1.9.2 " ) ,
60+ . package ( url: " https://github.com/coenttb/swift-translating " , from: " 0.3.0 " ) ,
6461 . package ( url: " https://github.com/swift-standards/swift-html-standard " , from: " 0.1.6 " ) ,
65- . package ( url: " https://github.com/swift-standards/swift-standards " , from: " 0.16.1 " ) ,
66- . package ( url: " https://github.com/swift-standards/swift-incits-4-1986 " , from: " 0.6.5 " ) ,
67- . package ( url: " https://github.com/swift-standards/swift-rfc-4648 " , from: " 0.5.4 " ) ,
68- . package ( url: " https://github.com/swift-standards/swift-iso-9899 " , from: " 0.2.2 " ) ,
62+ . package ( url: " https://github.com/swift-standards/swift-standards " , from: " 0.20.0 " ) ,
63+ . package ( url: " https://github.com/swift-standards/swift-incits-4-1986 " , from: " 0.7.1 " ) ,
64+ . package ( url: " https://github.com/swift-standards/swift-rfc-4648 " , from: " 0.6.0 " ) ,
65+ . package ( url: " https://github.com/swift-standards/swift-iso-9899 " , from: " 0.2.3 " ) ,
6966 . package ( url: " https://github.com/swift-standards/swift-whatwg-url " , from: " 0.2.5 " )
7067 ] ,
7168 targets: [
@@ -76,7 +73,6 @@ let package = Package(
7673 . css,
7774 . markdownHtmlRendering,
7875 . htmlStandard,
79- . dependencies,
8076 . orderedCollections,
8177 . standards,
8278 . incits4_1986,
@@ -100,7 +96,6 @@ let package = Package(
10096 . html,
10197 . markdownHtmlRendering,
10298 . cssTheming,
103- . dependencies,
10499 . orderedCollections
105100 ]
106101 ) ,
@@ -109,7 +104,6 @@ let package = Package(
109104 dependencies: [
110105 . html,
111106 . htmlRenderableTestSupport,
112- . dependenciesTestSupport,
113107 . product(
114108 name: " Translating " ,
115109 package : " swift-translating " ,
0 commit comments