Skip to content

Commit 54782c9

Browse files
committed
Doc updates
1 parent 503db17 commit 54782c9

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

site/getstarted/install.md

+10
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,16 @@ libraryDependencies += "co.fs2" %%% "fs2-io" % "@VERSION@"
3131
scalaJSLinkerConfig ~= (_.withModuleKind(ModuleKind.CommonJSModule))
3232
```
3333

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+
3444
Release notes for each release are available on [Github](https://github.com/typelevel/fs2/releases/).
3545

3646
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.

site/io.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# I/O
22

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:
44
- [Networking](#networking)
55
- [TCP](#tcp)
66
- [UDP](#udp)

0 commit comments

Comments
 (0)