Skip to content

Commit 52048a8

Browse files
committed
Release 0.0.5 of css, core, layout and dll
1 parent 193ed82 commit 52048a8

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

api/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ serde = { version = "1", optional = true, default-features = false }
2424
serde_derive = { version = "1", optional = true, default-features = false }
2525

2626
[dependencies.azul-dll]
27-
version = "0.0.1"
27+
version = "0.0.5"
2828
path = "../../dll"
2929
default-features = false
3030
features = ["rlib"]

core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azul-core"
3-
version = "0.0.2"
3+
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
55
license = "MPL-2.0"
66
description = '''
@@ -14,7 +14,7 @@ edition = "2021"
1414
autoexamples = false
1515

1616
[dependencies]
17-
azul-css = { path = "../css", version = "0.0.1", default-features = false }
17+
azul-css = { version = "0.0.5", path = "../css", default-features = false }
1818
libm = { version = "0.2.2", default-features = false }
1919
gl-context-loader = { version ="0.1.8", default-features = false }
2020
highway = { version = "0.8.0", default-features = false }

css/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azul-css"
3-
version = "0.0.1"
3+
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
55
license = "MPL-2.0"
66
description = '''

dll/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "azul-dll"
3-
version = "0.0.1"
3+
version = "0.0.5"
44
authors = ["Felix Schütt <[email protected]>"]
55
license = "MPL-2.0"
66
description = "C-API of Azul GUI"
@@ -23,9 +23,9 @@ crate-type = ["cdylib", "staticlib", "rlib"]
2323
doc = false
2424

2525
[dependencies]
26-
azul-core = { path = "../core", version = "0.0.2", default-features = false }
27-
azul-css = { path = "../css", version = "0.0.1", default-features = false, optional = true }
28-
azul-layout = { path = "../layout", version = "0.0.4", default-features = false, features = ["font_loading", "text_layout", "svg", "xml"], optional = true }
26+
azul-core = { path = "../core", version = "0.0.5", default-features = false }
27+
azul-css = { path = "../css", version = "0.0.5", default-features = false, optional = true }
28+
azul-layout = { path = "../layout", version = "0.0.5", default-features = false, features = ["font_loading", "text_layout", "svg", "xml"], optional = true }
2929
pyo3 = { version = "0.16.5", default-features = false, features = ["abi3", "multiple-pymethods", "extension-module", "macros", "auto-initialize"], optional = true }
3030
log = { version = "0.4.17", default-features = false, optional = true }
3131
pyo3-log = { version = "0.6.0", default-features = false, optional = true }

layout/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[package]
99
name = "azul-layout"
10-
version = "0.0.4"
10+
version = "0.0.5"
1111
authors = ["Felix Schütt <[email protected]>"]
1212
license = "MPL-2.0"
1313
description = "Layout solver + font and image loader the Azul GUI framework"
@@ -19,8 +19,8 @@ edition = "2021"
1919
autoexamples = false
2020

2121
[dependencies]
22-
azul-css = { path = "../css", version = "0.0.1", default-features = false, features = ["parser"] }
23-
azul-core = { path = "../core", version = "0.0.2", default-features = false }
22+
azul-css = { version = "0.0.5", path = "../css", default-features = false, features = ["parser"] }
23+
azul-core = { version = "0.0.5", path = "../core", default-features = false }
2424
image = { version = "0.25", default-features = false }
2525
rust-fontconfig = { version = "1.0.0", default-features = false }
2626

0 commit comments

Comments
 (0)