Use Piped's fork of nanojson for better performance

Also, our fork of nanojson was outdated, while FireMasterK's is not
This commit is contained in:
Stypox 2022-11-24 09:37:34 +01:00
parent c953e23414
commit a6b9f25182
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ allprojects {
}
ext {
nanojsonVersion = "1d9e1aea9049fc9f85e68b43ba39fe7be1c1f751"
nanojsonVersion = "5df3e81e87b791d01f132f376e4b7d4a1780f346"
spotbugsVersion = "4.7.3"
junitVersion = "5.9.1"
checkstyleVersion = "9.3" // do not use latest version (10.0) as it requires compile JDK 11

View File

@ -25,7 +25,7 @@ checkstyleTest {
dependencies {
implementation project(':timeago-parser')
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
implementation "com.github.FireMasterK:nanojson:$nanojsonVersion"
implementation 'org.jsoup:jsoup:1.15.3'
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
implementation 'org.nibor.autolink:autolink:0.10.0'

View File

@ -1,4 +1,4 @@
dependencies {
implementation "com.github.TeamNewPipe:nanojson:$nanojsonVersion"
implementation "com.github.FireMasterK:nanojson:$nanojsonVersion"
implementation "com.github.spotbugs:spotbugs-annotations:$spotbugsVersion"
}