Skip to content

Commit

Permalink
chore: updates
Browse files Browse the repository at this point in the history
  • Loading branch information
hseeberger committed Oct 11, 2023
1 parent 39b7937 commit 17391c3
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 46 deletions.
32 changes: 21 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[workspace]
members = [ "pub-sub-client", "pub-sub-client-derive", "pub-sub-client-tests" ]
members = [
"pub-sub-client",
"pub-sub-client-derive",
"pub-sub-client-tests",
]
resolver = "2"

[workspace.package]
# No use to define version here, because cargo release ignores it!
Expand All @@ -8,21 +13,26 @@ edition = "2021"
description = "Google Cloud Pub/Sub client library"
authors = [ "Heiko Seeberger <[email protected]>" ]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/hseeberger/pub-sub-client"
repository = "https://github.com/hseeberger/pub-sub-client"
documentation = "https://github.com/hseeberger/pub-sub-client"
publish = true

[workspace.dependencies]
anyhow = "1.0"
base64 = "0.13"
goauth = "0.13"
anyhow = { version = "1.0" }
base64 = { version = "0.13" }
goauth = { version = "0.13" }
proc-macro2 = { version = "1.0" }
quote = { version = "1.0" }
reqwest = { version = "0.11" }
serde = { version = "1.0" }
serde_json = "1.0"
smpl_jwt = "0.7"
thiserror = "1.0"
serde_json = { version = "1.0" }
smpl_jwt = { version = "0.7" }
syn = { version = "1.0" }
testcontainers = { version = "0.14" }
thiserror = { version = "1.0" }
time = { version = "0.3" }
tracing = "0.1"
testcontainers = "0.14"
tokio = "1.21"
tracing-subscriber = "0.3"
tokio = { version = "1.21" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
27 changes: 14 additions & 13 deletions pub-sub-client-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
[package]
name = "pub-sub-client-derive"
version= "0.11.1-alpha.0"
edition.workspace = true
description.workspace = true
authors.workspace = true
license.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
name = "pub-sub-client-derive"
version = "0.11.1-alpha.0"
description = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
publish = { workspace = true }

[lib]
proc-macro = true

[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0"
proc-macro2 = { workspace = true }
quote = { workspace = true }
syn = { workspace = true }
22 changes: 11 additions & 11 deletions pub-sub-client-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "pub-sub-client-tests"
version= "0.11.1-alpha.0"
edition.workspace = true
description.workspace = true
authors.workspace = true
license.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
publish = false
name = "pub-sub-client-tests"
version = "0.11.1-alpha.0"
description = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
publish = false

[dev-dependencies]
pub-sub-client = { version = "=0.11.1-alpha.0", path = "../pub-sub-client", features = [ "derive" ] }
Expand Down
23 changes: 12 additions & 11 deletions pub-sub-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "pub-sub-client"
version= "0.11.1-alpha.0"
edition.workspace = true
description.workspace = true
authors.workspace = true
license.workspace = true
readme.workspace = true
homepage.workspace = true
repository.workspace = true
documentation.workspace = true
exclude = [ "tests" ]
name = "pub-sub-client"
version = "0.11.1-alpha.0"
description = { workspace = true }
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }
readme = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
publish = { workspace = true }
exclude = [ "tests" ]

[features]
derive = [ "pub-sub-client-derive" ]
Expand Down

0 comments on commit 17391c3

Please sign in to comment.