Titouan BION
Titouan BION
My controller is the following: ```java @GetMapping public ResponseEntity getAll(final @PageableDefault(sort = "id") Pageable pageable) { return ResponseEntity.ok(null); } ``` The resulting Swagger UI is:  as well as [endpoint](https://github.com/oclif/dev-cli/blob/master/src/aws.ts#L36) However, there...
Any usage of the `kotlinx.coroutines.debug` package, for example `import kotlinx.coroutines.debug.DebugProbes` results in: ``` [JAVA_MODULE_DOES_NOT_EXPORT_PACKAGE] Symbol is declared in module 'kotlinx.coroutines.debug' which does not export package 'kotlinx.coroutines.debug' ``` The split package...
Is there any plans to support Kotlin/Wasm JS (equivalent to `wasmJs` target in the Kotlin Gradle Plugin)?
`rules_rust` sets one `-Ldependency` statement per transitive dependency, leading to potentially a very long library search path. The issue is, on Windows, in `rustc` the search paths get added to...