diff --git a/Cargo.toml b/Cargo.toml index c65be5a..f9620a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Utility Library for Rust" repository = "https://github.com/tinrab/bomboni" @@ -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 } diff --git a/bomboni_common/Cargo.toml b/bomboni_common/Cargo.toml index 5802cdb..d157673 100644 --- a/bomboni_common/Cargo.toml +++ b/bomboni_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_common" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Common things for Bomboni library." repository = "https://github.com/tinrab/bomboni" diff --git a/bomboni_derive/Cargo.toml b/bomboni_derive/Cargo.toml index ed8101b..29354a5 100644 --- a/bomboni_derive/Cargo.toml +++ b/bomboni_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_derive" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Provides derive implementations for Bomboni library." repository = "https://github.com/tinrab/bomboni" diff --git a/bomboni_prost/Cargo.toml b/bomboni_prost/Cargo.toml index a3e86fd..962c811 100644 --- a/bomboni_prost/Cargo.toml +++ b/bomboni_prost/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_prost" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Utilities for working with prost. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" diff --git a/bomboni_proto/Cargo.toml b/bomboni_proto/Cargo.toml index 2b82651..7695f72 100644 --- a/bomboni_proto/Cargo.toml +++ b/bomboni_proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_proto" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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" diff --git a/bomboni_request/Cargo.toml b/bomboni_request/Cargo.toml index 0757c20..91f33da 100644 --- a/bomboni_request/Cargo.toml +++ b/bomboni_request/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_request" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Utilities for working with API requests. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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"] } diff --git a/bomboni_template/Cargo.toml b/bomboni_template/Cargo.toml index 813ccfd..1eee215 100644 --- a/bomboni_template/Cargo.toml +++ b/bomboni_template/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bomboni_template" -version = "0.1.6" +version = "0.1.7" authors = ["Tin Rabzelj "] description = "Utilities for working Handlebars templates. Part of Bomboni library." repository = "https://github.com/tinrab/bomboni" @@ -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"