@@ -9,7 +9,6 @@ let package = Package(
9
9
] ,
10
10
products: [
11
11
. library( name: " ActivityClient " , targets: [ " ActivityClient " ] ) ,
12
- . library( name: " SyntaxHighlight " , targets: [ " SyntaxHighlight " ] ) ,
13
12
. library( name: " Models " , targets: [ " Models " ] ) ,
14
13
. library( name: " Routes " , targets: [ " Routes " ] ) ,
15
14
. library( name: " Pages " , targets: [ " Pages " ] ) ,
@@ -21,8 +20,8 @@ let package = Package(
21
20
. package ( url: " https://github.com/sliemeobn/elementary.git " , exact: " 0.4.3 " ) ,
22
21
. package ( url: " https://github.com/pointfreeco/swift-url-routing.git " , exact: " 0.6.2 " ) ,
23
22
. package ( url: " https://github.com/pointfreeco/swift-dependencies.git " , exact: " 1.6.2 " ) ,
24
- . package ( url: " https://github.com/swiftlang /swift-syntax.git " , from : " 600.0.1 " ) ,
25
- . package ( url: " https://github.com/errorerrorerror /swift-cascadia " , revision: " a13dfd0a3818c8f9368bbd4aeb3c6607f68838bd " )
23
+ . package ( url: " https://github.com/errorerrorerror /swift-cascadia " , revision : " a13dfd0a3818c8f9368bbd4aeb3c6607f68838bd " ) ,
24
+ . package ( url: " https://github.com/swiftlang /swift-markdown.git " , revision: " e62a44fd1f2764ba8807db3b6f257627449bbb8c " )
26
25
] ,
27
26
targets: [
28
27
. target(
@@ -46,12 +45,12 @@ let package = Package(
46
45
name: " Pages " ,
47
46
dependencies: [
48
47
" Models " ,
49
- " SyntaxHighlight " ,
50
48
" ActivityClient " ,
51
49
. product( name: " Dependencies " , package : " swift-dependencies " ) ,
52
50
. product( name: " Elementary " , package : " elementary " ) ,
53
51
. product( name: " Hummingbird " , package : " hummingbird " ) ,
54
- . product( name: " Cascadia " , package : " swift-cascadia " )
52
+ . product( name: " Cascadia " , package : " swift-cascadia " ) ,
53
+ . product( name: " Markdown " , package : " swift-markdown " )
55
54
]
56
55
) ,
57
56
@@ -64,16 +63,6 @@ let package = Package(
64
63
]
65
64
) ,
66
65
67
- /// Misc
68
- . target(
69
- name: " SyntaxHighlight " ,
70
- dependencies: [
71
- . product( name: " Elementary " , package : " elementary " ) ,
72
- . product( name: " SwiftSyntax " , package : " swift-syntax " ) ,
73
- . product( name: " SwiftParser " , package : " swift-syntax " ) ,
74
- ]
75
- ) ,
76
-
77
66
/// Executable
78
67
. executableTarget(
79
68
name: " App " ,
0 commit comments