diff --git a/example/rust/README.ja.md b/example/rust/README.ja.md index 634bb139..f5faaef0 100644 --- a/example/rust/README.ja.md +++ b/example/rust/README.ja.md @@ -10,13 +10,11 @@ _他言語バージョンもあります_:[English](README.md) - Momento オーストークンが必要です。トークン発行は[Momento CLI](https://github.com/momentohq/momento-cli)から行えます。 ```bash -cargo build - # SDKコード例を実行する -MOMENTO_AUTH_TOKEN= ./target/debug/rust +MOMENTO_API_KEY= cargo run --bin=cache ``` -SDK コード例: [main.rs](src/main.rs) +SDK コード例: [cache.rs](src/bin/cache.rs) ## SDK を自身のプロジェクトで使用する diff --git a/example/rust/README.template.md b/example/rust/README.template.md index f3a9e09e..b4d83207 100644 --- a/example/rust/README.template.md +++ b/example/rust/README.template.md @@ -22,7 +22,7 @@ This example demonstrates a basic set and get from a cache. MOMENTO_API_KEY= cargo run --bin=cache ``` -Example Code: [cache.rs](src/cache.rs) +Example Code: [cache.rs](src/bin/cache.rs) ## Running the Topics Example @@ -33,6 +33,6 @@ This example demonstrates subscribing to and publishing to a Topic. MOMENTO_API_KEY= cargo run --bin=topics ``` -Example Code: [topics.rs](src/topics.rs) +Example Code: [topics.rs](src/bin/topics.rs) {{ ossFooter }}