We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4279d45 commit babc085Copy full SHA for babc085
README.md
@@ -1,3 +1,31 @@
1
-# ByteSymbols
+# Swift Byte Symbols
2
3
A simple Swift package that exposes an `ASCII` namespace with named constants for the 128 ASCII code points.
4
+
5
+## Using Swift Byte Symbols in your project
6
7
+Add `swift-byte-symbols` as a dependency to your package:
8
9
+```swift
10
+let package = Package(
11
+ // ...
12
+ dependencies: [
13
+ .package(url: "https://github.com/Formkunft/swift-byte-symbols", .upToNextMajor(from: "2.0.0")),
14
+ ],
15
+ targets: [
16
+ .target(
17
18
19
+ .product(name: "ByteSymbols", package: "swift-byte-symbols"),
20
+ ]),
21
+ ]
22
+)
23
+```
24
25
+Then, import `ByteSymbols` in your code:
26
27
28
+import ByteSymbols
29
30
+// ...
31
0 commit comments