Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build/example-test-harness/pom-lettuce-async.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<groupId>io.redis</groupId><artifactId>lettuce-async</artifactId><version>1.0</version>
<properties><maven.compiler.release>17</maven.compiler.release><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties>
<dependencies>
<dependency><groupId>io.lettuce</groupId><artifactId>lettuce-core</artifactId><version>6.5.5.RELEASE</version></dependency>
<dependency><groupId>io.lettuce</groupId><artifactId>lettuce-core</artifactId><version>7.7.0.RELEASE</version></dependency>
<dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.17.1</version></dependency>
<dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.10.2</version><scope>test</scope></dependency>
<dependency><groupId>org.assertj</groupId><artifactId>assertj-core</artifactId><version>3.25.3</version><scope>test</scope></dependency>
</dependencies>
Expand Down
3 changes: 2 additions & 1 deletion build/example-test-harness/pom-lettuce-reactive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<groupId>io.redis</groupId><artifactId>lettuce-reactive</artifactId><version>1.0</version>
<properties><maven.compiler.release>17</maven.compiler.release><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties>
<dependencies>
<dependency><groupId>io.lettuce</groupId><artifactId>lettuce-core</artifactId><version>6.5.5.RELEASE</version></dependency>
<dependency><groupId>io.lettuce</groupId><artifactId>lettuce-core</artifactId><version>7.7.0.RELEASE</version></dependency>
<dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.17.1</version></dependency>
<dependency><groupId>org.junit.jupiter</groupId><artifactId>junit-jupiter</artifactId><version>5.10.2</version><scope>test</scope></dependency>
<dependency><groupId>org.assertj</groupId><artifactId>assertj-core</artifactId><version>3.25.3</version><scope>test</scope></dependency>
</dependencies>
Expand Down
8 changes: 5 additions & 3 deletions build/example-test-harness/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,12 @@ run_go() {
cp "$1" "$d/ex_test.go"
(cd "$d" && go mod tidy >/dev/null 2>&1 && go test ./... ) >"$LOG" 2>&1; rc=$?
}
run_rust_sync() { rust_run "$WORK/rust-sync" "$1" 'redis = "1.3"' ; }
run_rust_async(){ rust_run "$WORK/rust-async" "$1" 'redis = { version = "1.3", features = ["tokio-comp"] }
run_rust_sync() { rust_run "$WORK/rust-sync" "$1" 'redis = { version = "1.3", features = ["json"] }
serde_json = { version = "1", features = ["preserve_order"] }' ; }
run_rust_async(){ rust_run "$WORK/rust-async" "$1" 'redis = { version = "1.3", features = ["tokio-comp", "json"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
futures-util = "0.3"' ; }
futures-util = "0.3"
serde_json = { version = "1", features = ["preserve_order"] }' ; }
Comment thread
cursor[bot] marked this conversation as resolved.
rust_run() {
local d="$1" src="$2" deps="$3"; mkdir -p "$d/src"
if [ ! -f "$d/Cargo.toml" ]; then
Expand Down
330 changes: 164 additions & 166 deletions content/develop/data-types/json/path.md

Large diffs are not rendered by default.

Loading
Loading