Skip to content

Commit

Permalink
Fix features
Browse files Browse the repository at this point in the history
  • Loading branch information
tinrab committed Nov 29, 2023
1 parent b980055 commit bc71321
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 19 deletions.
19 changes: 12 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utility Library for Rust"
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -30,12 +30,17 @@ prost = ["dep:bomboni_prost"]
proto = ["prost", "dep:bomboni_proto"]
request = ["dep:bomboni_request"]
template = ["dep:bomboni_template"]
serde = ["bomboni_common/serde"]
json = ["bomboni_proto/json"]
chrono = ["bomboni_proto/chrono"]
tokio = ["bomboni_common/tokio"]
tonic = ["bomboni_proto/tonic", "bomboni_request/tonic"]

[dependencies]
bomboni_common = { path = "bomboni_common", version = "0.1.6" }
bomboni_derive = { path = "bomboni_derive", version = "0.1.6" }
bomboni_common = { path = "bomboni_common", version = "0.1.7" }
bomboni_derive = { path = "bomboni_derive", version = "0.1.7" }

bomboni_prost = { path = "bomboni_prost", version = "0.1.6", optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.6", optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.6", optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.6", optional = true }
bomboni_prost = { path = "bomboni_prost", version = "0.1.7", optional = true }
bomboni_proto = { path = "bomboni_proto", version = "0.1.7", optional = true }
bomboni_request = { path = "bomboni_request", version = "0.1.7", optional = true }
bomboni_template = { path = "bomboni_template", version = "0.1.7", optional = true }
2 changes: 1 addition & 1 deletion bomboni_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_common"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Common things for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion bomboni_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_derive"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Provides derive implementations for Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
2 changes: 1 addition & 1 deletion bomboni_prost/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_prost"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with prost. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down
4 changes: 2 additions & 2 deletions bomboni_proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_proto"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand Down Expand Up @@ -36,5 +36,5 @@ serde_json = { version = "1.0.108", optional = true }
serde_json = "1.0.108"

[build-dependencies]
bomboni_prost = { path = "../bomboni_prost", version = "0.1.6" }
bomboni_prost = { path = "../bomboni_prost", version = "0.1.7" }
prost-build = "0.12.3"
8 changes: 4 additions & 4 deletions bomboni_request/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_request"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working with API requests. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -18,9 +18,9 @@ testing = []
tonic = ["bomboni_proto/tonic", "dep:tonic"]

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.6" }
bomboni_derive = { path = "../bomboni_derive", version = "0.1.6" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.6" }
bomboni_common = { path = "../bomboni_common", version = "0.1.7" }
bomboni_derive = { path = "../bomboni_derive", version = "0.1.7" }
bomboni_proto = { path = "../bomboni_proto", version = "0.1.7" }
thiserror = "1.0.50"
itertools = "0.12.0"
time = { version = "0.3.30", features = ["formatting", "parsing"] }
Expand Down
6 changes: 3 additions & 3 deletions bomboni_template/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bomboni_template"
version = "0.1.6"
version = "0.1.7"
authors = ["Tin Rabzelj <tin@flinect.com>"]
description = "Utilities for working Handlebars templates. Part of Bomboni library."
repository = "https://github.com/tinrab/bomboni"
Expand All @@ -17,8 +17,8 @@ path = "src/lib.rs"
testing = []

[dependencies]
bomboni_common = { path = "../bomboni_common", version = "0.1.6" }
bomboni_proto = { version = "0.1.6", path = "../bomboni_proto", features = [
bomboni_common = { path = "../bomboni_common", version = "0.1.7" }
bomboni_proto = { version = "0.1.7", path = "../bomboni_proto", features = [
"json",
] }
thiserror = "1.0.50"
Expand Down

0 comments on commit bc71321

Please sign in to comment.