@@ -28,49 +28,49 @@ jobs:
2828 - name : Check crate versions
2929 run : |
3030 echo "=== Checking crate versions ==="
31- echo "rollkit- types version: $(cargo pkgid -p rollkit -types | cut -d# -f2)"
32- echo "rollkit -client version: $(cargo pkgid -p rollkit -client | cut -d# -f2)"
31+ echo "types version: $(cargo pkgid -p ev -types | cut -d# -f2)"
32+ echo "ev -client version: $(cargo pkgid -p ev -client | cut -d# -f2)"
3333
3434 - name : Run tests
3535 run : cargo test --workspace --all-features
3636
37- - name : Package and publish rollkit -types (dry run)
37+ - name : Package and publish ev -types (dry run)
3838 if : github.event_name == 'workflow_dispatch' && inputs.dry_run
3939 run : |
40- cd client/crates/rollkit- types
40+ cd client/crates/types
4141 cargo package --allow-dirty
4242 cargo publish --dry-run
4343
44- - name : Package and publish rollkit -client (dry run)
44+ - name : Package and publish ev -client (dry run)
4545 if : github.event_name == 'workflow_dispatch' && inputs.dry_run
4646 run : |
47- cd client/crates/rollkit -client
47+ cd client/crates/ev -client
4848 cargo package --allow-dirty
4949 cargo publish --dry-run
5050
51- - name : Publish rollkit -types
51+ - name : Publish ev -types
5252 if : (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
5353 env :
5454 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
5555 run : |
56- cd client/crates/rollkit- types
56+ cd client/crates/types
5757 cargo package --allow-dirty
5858 cargo publish
5959
60- - name : Wait for rollkit -types to be available
60+ - name : Wait for ev -types to be available
6161 if : (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
6262 run : |
63- echo "Waiting for rollkit -types to be available on crates.io..."
63+ echo "Waiting for ev -types to be available on crates.io..."
6464 sleep 60
6565 # Verify the package is available
66- cargo search rollkit -types --limit 1
66+ cargo search ev -types --limit 1
6767
68- - name : Publish rollkit -client
68+ - name : Publish ev -client
6969 if : (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
7070 env :
7171 CARGO_REGISTRY_TOKEN : ${{ secrets.CARGO_REGISTRY_TOKEN }}
7272 run : |
73- cd client/crates/rollkit- client
73+ cd client/crates/client
7474 cargo package --allow-dirty
7575 cargo publish
7676
@@ -83,17 +83,17 @@ jobs:
8383 # Rust Client Release
8484
8585 This release includes:
86- - `rollkit -types`: Proto-generated types for Rollkit
87- - `rollkit -client`: High-level Rust client for Rollkit gRPC services
86+ - `ev -types`: Proto-generated types for ev-node
87+ - `ev -client`: High-level Rust client for ev-node gRPC services
8888
8989 ## Installation
9090
9191 Add to your `Cargo.toml`:
9292 ```toml
9393 [dependencies]
94- rollkit -client = "<version>"
94+ ev -client = "<version>"
9595 ```
9696
97- See the [README](https://github.com/evstack/ev-node/tree/main/client/crates/rollkit -client) for usage examples.
97+ See the [README](https://github.com/evstack/ev-node/tree/main/client/crates/ev -client) for usage examples.
9898 draft : false
9999 prerelease : false
0 commit comments