@@ -44,7 +44,7 @@ RSocket interface contains 5 methods:
4444
4545## Using in your projects
4646
47- Make sure, that you use Kotlin 1.5.20
47+ Make sure, that you use Kotlin 1.6.10
4848
4949### Gradle:
5050
@@ -71,15 +71,15 @@ For WS ktor transport, available client or server engine should be added:
7171``` kotlin
7272dependencies {
7373 // client engines for WS transport
74- implementation(" io.ktor:ktor-client-js:1.6.2 " ) // js
75- implementation(" io.ktor:ktor-client-cio:1.6.2 " ) // jvm
76- implementation(" io.ktor:ktor-client-okhttp:1.6.2 " ) // jvm
74+ implementation(" io.ktor:ktor-client-js:1.6.7 " ) // js
75+ implementation(" io.ktor:ktor-client-cio:1.6.7 " ) // jvm
76+ implementation(" io.ktor:ktor-client-okhttp:1.6.7 " ) // jvm
7777
7878 // server engines for WS transport (jvm only)
79- implementation(" io.ktor:ktor-server-cio:1.6.2 " )
80- implementation(" io.ktor:ktor-server-netty:1.6.2 " )
81- implementation(" io.ktor:ktor-server-jetty:1.6.2 " )
82- implementation(" io.ktor:ktor-server-tomcat:1.6.2 " )
79+ implementation(" io.ktor:ktor-server-cio:1.6.7 " )
80+ implementation(" io.ktor:ktor-server-netty:1.6.7 " )
81+ implementation(" io.ktor:ktor-server-jetty:1.6.7 " )
82+ implementation(" io.ktor:ktor-server-tomcat:1.6.7 " )
8383}
8484```
8585
@@ -176,7 +176,6 @@ embeddedServer(CIO) {
176176
177177### More examples:
178178
179- - [ interactions] ( examples/interactions ) - contains usages of some supported functions
180179- [ multiplatform-chat] ( examples/multiplatform-chat ) - chat implementation with JVM server and JS/JVM client with shared classes and
181180 serializing data using [ kotlinx.serialization] ( https://github.com/Kotlin/kotlinx.serialization )
182181- [ nodejs-tcp-transport] ( examples/nodejs-tcp-transport ) - implementation of TCP transport for nodejs
0 commit comments