mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-26 03:58:45 +00:00
Compare commits
No commits in common. "0b48afd251ca861e33775143ff279b9869965eca" and "92a4ecb5236777021705a5c64e5f6cf1bb4ec9e1" have entirely different histories.
0b48afd251
...
92a4ecb523
@ -1,11 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.9.24
|
|
||||||
|
|
||||||
* `Ktor`:
|
|
||||||
* `Common`:
|
|
||||||
* New extension fun `MPPFile#input`
|
|
||||||
|
|
||||||
## 0.9.23
|
## 0.9.23
|
||||||
|
|
||||||
* `Repos`:
|
* `Repos`:
|
||||||
|
@ -14,5 +14,5 @@ crypto_js_version=4.1.1
|
|||||||
# Project data
|
# Project data
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=0.9.24
|
version=0.9.23
|
||||||
android_code_version=114
|
android_code_version=113
|
||||||
|
@ -39,7 +39,6 @@ kt-coroutines = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", vers
|
|||||||
kt-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kt-coroutines" }
|
kt-coroutines-android = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-android", version.ref = "kt-coroutines" }
|
||||||
|
|
||||||
|
|
||||||
ktor-io = { module = "io.ktor:ktor-io", version.ref = "ktor" }
|
|
||||||
ktor-client = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
|
ktor-client = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
|
||||||
ktor-client-java = { module = "io.ktor:ktor-client-java", version.ref = "ktor" }
|
ktor-client-java = { module = "io.ktor:ktor-client-java", version.ref = "ktor" }
|
||||||
ktor-server = { module = "io.ktor:ktor-server", version.ref = "ktor" }
|
ktor-server = { module = "io.ktor:ktor-server", version.ref = "ktor" }
|
||||||
|
@ -14,7 +14,6 @@ kotlin {
|
|||||||
api libs.kt.serialization.cbor
|
api libs.kt.serialization.cbor
|
||||||
api libs.klock
|
api libs.klock
|
||||||
api libs.uuid
|
api libs.uuid
|
||||||
api libs.ktor.io
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
package dev.inmo.micro_utils.ktor.common
|
|
||||||
|
|
||||||
import dev.inmo.micro_utils.common.MPPFile
|
|
||||||
import io.ktor.utils.io.core.Input
|
|
||||||
|
|
||||||
expect fun MPPFile.input(): Input
|
|
@ -1,7 +0,0 @@
|
|||||||
package dev.inmo.micro_utils.ktor.common
|
|
||||||
|
|
||||||
import dev.inmo.micro_utils.common.*
|
|
||||||
import io.ktor.utils.io.core.ByteReadPacket
|
|
||||||
import io.ktor.utils.io.core.Input
|
|
||||||
|
|
||||||
actual fun MPPFile.input(): Input = ByteReadPacket(readBytes())
|
|
@ -1,7 +0,0 @@
|
|||||||
package dev.inmo.micro_utils.ktor.common
|
|
||||||
|
|
||||||
import dev.inmo.micro_utils.common.MPPFile
|
|
||||||
import io.ktor.utils.io.core.Input
|
|
||||||
import io.ktor.utils.io.streams.asInput
|
|
||||||
|
|
||||||
actual fun MPPFile.input(): Input = inputStream().asInput()
|
|
Loading…
Reference in New Issue
Block a user