-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
293 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Utility Library for Rust" | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
@@ -27,7 +27,6 @@ members = [ | |
"bomboni_wasm", | ||
"bomboni_wasm_core", | ||
"bomboni_wasm_derive", | ||
"wasm_sample", | ||
] | ||
|
||
[features] | ||
|
@@ -52,11 +51,11 @@ fs = ["dep:bomboni_fs"] | |
postgres = ["bomboni_common/postgres", "bomboni_request/postgres"] | ||
|
||
[dependencies] | ||
bomboni_common = { path = "bomboni_common", version = "0.1.57" } | ||
bomboni_common = { path = "bomboni_common", version = "0.1.58" } | ||
|
||
bomboni_prost = { path = "bomboni_prost", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_proto = { path = "bomboni_proto", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_request = { path = "bomboni_request", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_template = { path = "bomboni_template", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_fs = { path = "bomboni_fs", version = "0.1.57", default-features = false, optional = true } | ||
bomboni_prost = { path = "bomboni_prost", version = "0.1.58", default-features = false, optional = true } | ||
bomboni_proto = { path = "bomboni_proto", version = "0.1.58", default-features = false, optional = true } | ||
bomboni_request = { path = "bomboni_request", version = "0.1.58", default-features = false, optional = true } | ||
bomboni_template = { path = "bomboni_template", version = "0.1.58", default-features = false, optional = true } | ||
bomboni_wasm = { path = "bomboni_wasm", version = "0.1.58", default-features = false, optional = true } | ||
bomboni_fs = { path = "bomboni_fs", version = "0.1.58", default-features = false, optional = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_common" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Common things for Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
@@ -15,7 +15,7 @@ path = "src/lib.rs" | |
|
||
[features] | ||
serde = ["dep:serde"] | ||
tokio = ["dep:tokio"] | ||
tokio = ["dep:tokio", "dep:parking_lot"] | ||
chrono = ["dep:chrono"] | ||
wasm = [ | ||
"dep:bomboni_wasm", | ||
|
@@ -27,7 +27,7 @@ js = [] | |
postgres = ["dep:postgres-types", "dep:bytes"] | ||
|
||
[dependencies] | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.57", features = [ | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", features = [ | ||
"derive", | ||
], optional = true } | ||
|
||
|
@@ -36,6 +36,7 @@ regex = "1.10.5" | |
time = { version = "0.3.36", features = ["formatting", "parsing"] } | ||
|
||
tokio = { version = "1.39.1", features = ["time", "sync"], optional = true } | ||
parking_lot = { version = "0.12.3", optional = true } | ||
serde = { version = "1.0.204", features = ["derive"], optional = true } | ||
chrono = { version = "0.4.38", optional = true } | ||
postgres-types = { version = "0.2.7", features = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_core" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Internal part of Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_fs" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Utilites for working with the file system. Part of Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_prost" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Utilities for working with prost. Part of Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
@@ -14,7 +14,7 @@ name = "bomboni_prost" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
bomboni_core = { path = "../bomboni_core", version = "0.1.57" } | ||
bomboni_core = { path = "../bomboni_core", version = "0.1.58" } | ||
|
||
prost = "0.13.1" | ||
prost-types = "0.13.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_proto" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Utilities for working with Protobuf/gRPC. Part of Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
@@ -30,7 +30,7 @@ js = ["bomboni_common/js"] | |
[dependencies] | ||
bomboni_common = { path = "../bomboni_common", features = [ | ||
"serde", | ||
], version = "0.1.57" } | ||
], version = "0.1.58" } | ||
|
||
thiserror = "1.0.63" | ||
time = { version = "0.3.36", features = ["serde", "formatting", "parsing"] } | ||
|
@@ -44,7 +44,7 @@ http = { version = "1.1.0", optional = true } | |
chrono = { version = "0.4.38", optional = true } | ||
|
||
[target.'cfg(all(target_family = "wasm", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies] | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.57", optional = true } | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", optional = true } | ||
|
||
wasm-bindgen = { version = "0.2.92", optional = true } | ||
js-sys = { version = "0.3.69", optional = true } | ||
|
@@ -54,5 +54,5 @@ serde-wasm-bindgen = { version = "0.6.5", optional = true } | |
serde_json = "1.0.120" | ||
|
||
[build-dependencies] | ||
bomboni_prost = { path = "../bomboni_prost", version = "0.1.57" } | ||
bomboni_prost = { path = "../bomboni_prost", version = "0.1.58" } | ||
prost-build = "0.13.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bomboni_request" | ||
version = "0.1.57" | ||
version = "0.1.58" | ||
authors = ["Tin Rabzelj <[email protected]>"] | ||
description = "Utilities for working with API requests. Part of Bomboni library." | ||
repository = "https://github.com/tinrab/bomboni" | ||
|
@@ -29,10 +29,10 @@ wasm = [ | |
postgres = ["dep:postgres-types", "dep:bytes"] | ||
|
||
[dependencies] | ||
bomboni_common = { path = "../bomboni_common", version = "0.1.57" } | ||
bomboni_proto = { path = "../bomboni_proto", version = "0.1.57" } | ||
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.57" } | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.57", features = [ | ||
bomboni_common = { path = "../bomboni_common", version = "0.1.58" } | ||
bomboni_proto = { path = "../bomboni_proto", version = "0.1.58" } | ||
bomboni_request_derive = { path = "../bomboni_request_derive", version = "0.1.58" } | ||
bomboni_wasm = { path = "../bomboni_wasm", version = "0.1.58", features = [ | ||
"derive", | ||
], optional = true } | ||
|
||
|
Oops, something went wrong.