mirror of
https://github.com/vacp2p/status-linea-besu.git
synced 2026-01-07 21:13:56 -05:00
This replaces io.tmio/tuweni with the Consensys fork. Also Includes: - reduce check argument args allocations - https://github.com/Consensys/tuweni/pull/10 which should reduce Integer and int[] and therefore gc pressure Signed-off-by: Simon Dudley <simon.dudley@consensys.net>
28 lines
965 B
Groovy
28 lines
965 B
Groovy
dependencies {
|
|
api project(':util')
|
|
api project(':crypto:algorithms')
|
|
api 'org.slf4j:slf4j-api'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
implementation 'com.google.guava:guava'
|
|
implementation 'io.vertx:vertx-core'
|
|
implementation 'io.vertx:vertx-web'
|
|
implementation 'io.consensys.protocols:tuweni-net'
|
|
|
|
runtimeOnly('org.bouncycastle:bcpkix-jdk18on')
|
|
|
|
// test dependencies.
|
|
testImplementation project(':testutil')
|
|
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
|
|
// integration test dependencies.
|
|
integrationTestImplementation project(':testutil')
|
|
integrationTestImplementation 'org.assertj:assertj-core'
|
|
integrationTestImplementation 'org.bouncycastle:bcpkix-jdk18on'
|
|
integrationTestImplementation 'org.awaitility:awaitility'
|
|
integrationTestImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
integrationTestImplementation 'org.mockito:mockito-core'
|
|
}
|