diff --git a/Cargo.lock b/Cargo.lock index 28a9b6d..e0c1d38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2247,7 +2247,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stctl" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "cargo_metadata", @@ -2273,7 +2273,7 @@ dependencies = [ [[package]] name = "stellation" -version = "0.1.3" +version = "0.1.4" dependencies = [ "stctl", "stellation-backend", @@ -2284,7 +2284,7 @@ dependencies = [ [[package]] name = "stellation-backend" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "bincode", @@ -2319,7 +2319,7 @@ dependencies = [ [[package]] name = "stellation-bridge" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "bincode", @@ -2334,7 +2334,7 @@ dependencies = [ [[package]] name = "stellation-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "serde", "serde_json", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "stellation-frontend" -version = "0.1.3" +version = "0.1.4" dependencies = [ "bounce", "stellation-bridge", diff --git a/crates/stctl/Cargo.toml b/crates/stctl/Cargo.toml index 870202b..096b704 100644 --- a/crates/stctl/Cargo.toml +++ b/crates/stctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stctl" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" @@ -36,7 +36,7 @@ tokio-stream = { version = "0.1.11", features = ["sync"] } webbrowser = "0.8.4" # Stellation Components -stellation-core = { version = "0.1.3", path = "../stellation-core" } +stellation-core = { version = "0.1.4", path = "../stellation-core" } [package.metadata.docs.rs] all-features = true diff --git a/crates/stellation-backend/Cargo.toml b/crates/stellation-backend/Cargo.toml index 939b904..8cd2c39 100644 --- a/crates/stellation-backend/Cargo.toml +++ b/crates/stellation-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellation-backend" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" @@ -26,8 +26,8 @@ rand = "0.8.5" lol_html = "0.3.2" # Stellation Components -stellation-bridge = { version = "0.1.3", path = "../stellation-bridge", features = ["resolvable"] } -stellation-core = { version = "0.1.3", path = "../stellation-core" } +stellation-bridge = { version = "0.1.4", path = "../stellation-bridge", features = ["resolvable"] } +stellation-core = { version = "0.1.4", path = "../stellation-core" } # Yew / Component Related yew = { version = "0.20", features = ["ssr"] } diff --git a/crates/stellation-bridge/Cargo.toml b/crates/stellation-bridge/Cargo.toml index d6df3f2..c8e3ca6 100644 --- a/crates/stellation-bridge/Cargo.toml +++ b/crates/stellation-bridge/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellation-bridge" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" diff --git a/crates/stellation-core/Cargo.toml b/crates/stellation-core/Cargo.toml index bf2a3bf..0b06c7b 100644 --- a/crates/stellation-core/Cargo.toml +++ b/crates/stellation-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellation-core" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" diff --git a/crates/stellation-frontend/Cargo.toml b/crates/stellation-frontend/Cargo.toml index 7093ef4..79af49c 100644 --- a/crates/stellation-frontend/Cargo.toml +++ b/crates/stellation-frontend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellation-frontend" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" @@ -23,7 +23,7 @@ tracing-web = "0.1.2" tracing-subscriber = { version = "0.3.16", default-features = false, features = ["time", "std", "fmt", "ansi"] } # Stellation Components -stellation-bridge = { version = "0.1.3", path = "../stellation-bridge" } +stellation-bridge = { version = "0.1.4", path = "../stellation-bridge" } [dependencies.web-sys] version = "0.3" diff --git a/crates/stellation/Cargo.toml b/crates/stellation/Cargo.toml index ea6857d..43c5466 100644 --- a/crates/stellation/Cargo.toml +++ b/crates/stellation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stellation" -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.66" repository = "https://github.com/futursolo/stellation" @@ -15,11 +15,11 @@ homepage = "https://github.com/futursolo/stellation" license = "MIT OR Apache-2.0" [dependencies] -stellation-core = { version = "0.1.3", path = "../stellation-core" } -stellation-frontend = { version = "0.1.3", path = "../stellation-frontend" } -stellation-backend = { version = "0.1.3", path = "../stellation-backend" } -stellation-bridge = { version = "0.1.3", path = "../stellation-bridge" } -stctl = { version = "0.1.3", path = "../stctl" } +stellation-core = { version = "0.1.4", path = "../stellation-core" } +stellation-frontend = { version = "0.1.4", path = "../stellation-frontend" } +stellation-backend = { version = "0.1.4", path = "../stellation-backend" } +stellation-bridge = { version = "0.1.4", path = "../stellation-bridge" } +stctl = { version = "0.1.4", path = "../stctl" } [package.metadata.docs.rs] all-features = true diff --git a/examples/fullstack/api/Cargo.toml b/examples/fullstack/api/Cargo.toml index 4067e7d..6f3ba19 100644 --- a/examples/fullstack/api/Cargo.toml +++ b/examples/fullstack/api/Cargo.toml @@ -7,7 +7,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -stellation-bridge = { version = "0.1.3", path = "../../../crates/stellation-bridge" } +stellation-bridge = { version = "0.1.4", path = "../../../crates/stellation-bridge" } time = { version = "0.3", features = ["wasm-bindgen", "serde-human-readable"] } serde = { version = "1", features = ["derive"] } async-trait = "0.1.61" diff --git a/examples/fullstack/client/Cargo.toml b/examples/fullstack/client/Cargo.toml index 69eebf7..91d9407 100644 --- a/examples/fullstack/client/Cargo.toml +++ b/examples/fullstack/client/Cargo.toml @@ -7,7 +7,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -stellation-frontend = { version = "0.1.3", path = "../../../crates/stellation-frontend" } +stellation-frontend = { version = "0.1.4", path = "../../../crates/stellation-frontend" } yew = "0.20.0" gloo = "0.8" diff --git a/examples/fullstack/server/Cargo.toml b/examples/fullstack/server/Cargo.toml index 84d3d82..5724cbe 100644 --- a/examples/fullstack/server/Cargo.toml +++ b/examples/fullstack/server/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] anyhow = "1" -stellation-backend = { version = "0.1.3", path = "../../../crates/stellation-backend", features = ["cli"] } +stellation-backend = { version = "0.1.4", path = "../../../crates/stellation-backend", features = ["cli"] } tokio = { version = "1.24.1", features = ["full"] } tracing = { version = "0.1.37" } yew = "0.20.0" diff --git a/examples/fullstack/view/Cargo.toml b/examples/fullstack/view/Cargo.toml index 10fd251..f5f6910 100644 --- a/examples/fullstack/view/Cargo.toml +++ b/examples/fullstack/view/Cargo.toml @@ -9,7 +9,7 @@ publish = false [dependencies] yew = { version = "0.20.0" } example-fullstack-api = { path = "../api" } -stellation-bridge = { version = "0.1.3", path = "../../../crates/stellation-bridge" } +stellation-bridge = { version = "0.1.4", path = "../../../crates/stellation-bridge" } time = { version = "0.3", features = ["wasm-bindgen", "serde-human-readable", "macros"] } tracing = "0.1.37" bounce = { version = "0.6.0", features = ["helmet"] }