Skip to content

fix: rename hermes rust client to #2935

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 7, 2025
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-hermes-client-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
run: cargo fmt --all -- --check
if: success() || failure()
- name: Clippy check
run: cargo clippy -p pyth-hermes-client --all-targets -- --deny warnings
run: cargo clippy -p pyth-hermes-client-rust --all-targets -- --deny warnings
if: success() || failure()
- name: test
run: cargo test -p pyth-hermes-client
run: cargo test -p pyth-hermes-client-rust
if: success() || failure()
2 changes: 1 addition & 1 deletion .github/workflows/publish-rust-hermes-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- rust-pyth-hermes-client-v*
jobs:
publish-pyth-hermes-client:
name: Publish Rust package pyth-hermes-client to crates.io
name: Publish Rust package pyth-hermes-client-rust to crates.io
runs-on: ubuntu-latest
steps:
- name: Checkout sources
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/hermes/client/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "pyth-hermes-client"
name = "pyth-hermes-client-rust"
version = "0.0.1"
edition = "2021"
description = "A Rust client for Pyth Hermes"
Expand Down
2 changes: 1 addition & 1 deletion apps/hermes/client/rust/examples/subscribe_price_feeds.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::time::Duration;

use pyth_hermes_client::{
use pyth_hermes_client_rust::{
backoff::HermesExponentialBackoffBuilder,
client::HermesClientBuilder,
ws_connection::{HermesClientMessageSubscribe, HermesClientMessageUnsubscribe},
Expand Down