File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,16 @@ libraryDependencies += "co.fs2" %%% "fs2-io" % "@VERSION@"
31
31
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule))
32
32
```
33
33
34
+ The fs2-core as well as fs2-io and fs2-scodec libraries are also supported on Scala Native:
35
+ ```
36
+ libraryDependencies += "co.fs2" %%% "fs2-core" % "@VERSION@"
37
+ libraryDependencies += "co.fs2" %%% "fs2-scodec" % "@VERSION@"
38
+
39
+ // TCP support requires https://github.com/armanbilge/epollcat/
40
+ // TLS support requires https://github.com/aws/s2n-tls
41
+ libraryDependencies += "co.fs2" %%% "fs2-io" % "@VERSION@"
42
+ ```
43
+
34
44
Release notes for each release are available on [ Github] ( https://github.com/typelevel/fs2/releases/ ) .
35
45
36
46
If upgrading from the 2.x series, see the [ release notes for 3.0.0] ( https://github.com/typelevel/fs2/releases/tag/v3.0.0 ) for help with upgrading.
Original file line number Diff line number Diff line change 1
1
# I/O
2
2
3
- The ` fs2-io ` library provides support for performing input and output on the JVM and Node.js. This includes:
3
+ The ` fs2-io ` library provides support for performing input and output on the JVM, Node.js, and Scala Native . This includes:
4
4
- [ Networking] ( #networking )
5
5
- [ TCP] ( #tcp )
6
6
- [ UDP] ( #udp )
You can’t perform that action at this time.
0 commit comments