Skip to content

Commit

Permalink
Fix release process.
Browse files Browse the repository at this point in the history
  • Loading branch information
YoEight committed Feb 13, 2023
1 parent 5cb13b7 commit e4d07c9
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
run: cargo login $TOKEN
- name: Upload
run: |
pushd eventstore
cargo publish
popd
cargo publish -p eventstore-macros
cargo publish -p eventstore
cargo publish -p eventstore-extras
14 changes: 10 additions & 4 deletions eventstore-extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
name = "eventstore-extras"
version = "0.1.0"
edition = "2021"
publish = false

license = "MIT"

description = "EventStoreDB gRPC client extra features"
keywords = ["database", "eventsourcing", "eventstore", "eventstoredb", "grpc"]
repository = "https://github.com/EventStore/EventStoreDB-Client-Rust"
categories = ["database", "api-bindings"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# will move to version number once we got something stable.
eventstore = { path = "../eventstore" }
chrono = "*"
log = "*"
eventstore = { path = "../eventstore", version = "2.2.0" }
chrono = "0.4"
log = "0.4"
6 changes: 6 additions & 0 deletions eventstore-extras/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# eventstore-extras

EventStoreDB gRPC client extra features.

## Features
* Typeful stats data structures when reading from the stats gRPC endpoint.
11 changes: 8 additions & 3 deletions eventstore-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[package]
name = "eventstore-macros"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
publish = false
license = "MIT"

description = "Extra EventStoreDB gRPC client internal code generation features"
keywords = ["database", "eventsourcing", "eventstore", "eventstoredb", "grpc"]
repository = "https://github.com/EventStore/EventStoreDB-Client-Rust"
categories = ["database", "api-bindings"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true

[dependencies]
syn = { version = "1", features = ["full", "fold"] }
syn = { version = "1", features = ["full", "fold", "extra-traits"] }
quote = "1"
2 changes: 1 addition & 1 deletion eventstore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ bitflags = "1"
byteorder = "1.2"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
eventstore-macros = { path = "../eventstore-macros" }
eventstore-macros = { path = "../eventstore-macros", version = "0.0.1" }
futures = "0.3"
http = "0.2"
hyper = { version = "0.14", features = ["client", "tcp"] }
Expand Down

0 comments on commit e4d07c9

Please sign in to comment.