Updated comments/dependencies

This commit is contained in:
Robinson 2023-07-14 13:47:05 +02:00
parent 2f8c78ddee
commit 307b8f558f
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
2 changed files with 6 additions and 12 deletions

View File

@ -190,12 +190,6 @@
https://github.com/EsotericSoftware/minlog
Nathan Sweet
- Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs
[BSD 3-Clause License]
https://github.com/LWJGL/lwjgl3
Copyright 2023
Lightweight Java Game Library
- Updates - Software Update Management
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates

View File

@ -85,8 +85,8 @@ GradleUtils.jpms(JavaVersion.VERSION_11) // this is a bit of a hack to workaroun
// ability to send with a function callback (using RMI waiter type stuff for callbacks)
// java 14 is faster with aeron!
// NOTE: now using aeron instead of netty
// todo: remove BC! use or native java? (if possible. we are java 11 now, instead of 1.6)
licensing {
@ -166,7 +166,7 @@ dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1")
// https://github.com/dorkbox
api("com.dorkbox:ByteUtilities:1.10")
api("com.dorkbox:ByteUtilities:1.12")
api("com.dorkbox:Collections:1.6")
api("com.dorkbox:MinLog:2.5")
api("com.dorkbox:NetworkDNS:2.9")
@ -175,7 +175,7 @@ dependencies {
api("com.dorkbox:Serializers:2.9")
api("com.dorkbox:Storage:1.5")
api("com.dorkbox:Updates:1.1")
api("com.dorkbox:Utilities:1.42")
api("com.dorkbox:Utilities:1.43")
// how we bypass using reflection/jpms to access fields for java17+
@ -200,8 +200,8 @@ dependencies {
exclude("com.esotericsoftware", "minlog") // we use our own minlog, that logs to SLF4j instead
}
// https://github.com/jpountz/lz4-java
// implementation("net.jpountz.lz4:lz4:1.3.0")
// https://github.com/lz4/lz4-java
api("org.lz4:lz4-java:1.8.0")
// this is NOT the same thing as LMAX disruptor.
// This is just a slightly faster queue than LMAX. (LMAX is a fast queue + other things w/ a difficult DSL)