Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
photino committed Oct 7, 2023
1 parent 234c181 commit bc1b0d6
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 59 deletions.
10 changes: 5 additions & 5 deletions examples/actix-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "actix-app"
description = "An example for actix-web integration."
version = "0.3.0"
version = "0.3.1"
rust-version = "1.72"
edition = "2021"
publish = false
Expand All @@ -18,12 +18,12 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.12.3"
version = "0.13.0"
features = ["actix", "export-pdf"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.13.3"
version = "0.14.0"
features = [
"connector",
"connector-arrow",
Expand All @@ -33,8 +33,8 @@ features = [

[dependencies.zino-derive]
path = "../../zino-derive"
version = "0.10.3"
version = "0.11.0"

[dependencies.zino-model]
path = "../../zino-model"
version = "0.10.3"
version = "0.11.0"
15 changes: 4 additions & 11 deletions examples/actix-app/config/config.dev.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=dev

name = "data-cube"
version = "0.6.2"
version = "0.6.3"

[dirs]
uploads = "local/uploads"
Expand All @@ -28,19 +28,12 @@ port = 6082
namespace = "dc"
max-rows = 10000

[[mysql]]
host = "127.0.0.1"
port = 3306
database = "data_cube"
username = "root"
password = "Lv2OvgIj2FvuDPa9gTwBwUrVQhL/GG+mHC6SFqm8ZFo"

[[postgres]]
host = "127.0.0.1"
port = 5432
database = "data_cube"
username = "postgres"
password = "Wp6igv6c/+W0x7TCz2d7X3UPv0cYSCiXGM4fIxwbeNpNB8cA"
password = "7KlQXgPKdf1pII200zf/0lsod6gOJfrUhiRxCErYvnOyZBHE"

[[sqlite]]
database = "local/data/main.db"
Expand All @@ -60,12 +53,12 @@ refresh-interval = "7d"
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
15 changes: 4 additions & 11 deletions examples/actix-app/config/config.prod.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=prod

name = "data-cube"
version = "0.6.2"
version = "0.6.3"

[dirs]
uploads = "local/uploads"
Expand All @@ -28,19 +28,12 @@ port = 6082
type = "postgres"
namespace = "dc"

[[mysql]]
host = "127.0.0.1"
port = 3306
database = "data_cube"
username = "root"
password = "kXzpyb7fjw9Y5asQF2ZyAb3tly6tJwRX+u3YtL/R5Hg"

[[postgres]]
host = "127.0.0.1"
port = 5432
database = "data_cube"
username = "postgres"
password = "K+Teo8T42y6s1bM2WIlXEFj0GVFOgzW+LmO27HwQB+89Ala7"
password = "nNRimGdBSlhiyiz30LYRKUfawlbfAilO0nuZFw+l3cpKsVUZ"

[[sqlite]]
database = "local/data/main.db"
Expand All @@ -56,12 +49,12 @@ port = 9000
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
10 changes: 5 additions & 5 deletions examples/axum-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "axum-app"
description = "An example for axum integration."
version = "0.9.0"
version = "0.9.1"
rust-version = "1.72"
edition = "2021"
publish = false
Expand All @@ -18,12 +18,12 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.12.3"
version = "0.13.0"
features = ["axum", "export-pdf"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.13.3"
version = "0.14.0"
features = [
"connector",
"connector-arrow",
Expand All @@ -34,8 +34,8 @@ features = [

[dependencies.zino-derive]
path = "../../zino-derive"
version = "0.10.3"
version = "0.11.0"

[dependencies.zino-model]
path = "../../zino-model"
version = "0.10.3"
version = "0.11.0"
8 changes: 4 additions & 4 deletions examples/axum-app/config/config.dev.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=dev

name = "data-cube"
version = "0.6.2"
version = "0.6.3"

[dirs]
uploads = "local/uploads"
Expand Down Expand Up @@ -36,7 +36,7 @@ host = "127.0.0.1"
port = 3306
database = "data_cube"
username = "root"
password = "hWSkJHvQkgnvIYylDSigujOgkyU"
password = "Wuf4gbfL1R0DRyUbXsMUDm3lwaA"

[[sqlite]]
database = "local/data/main.db"
Expand All @@ -56,12 +56,12 @@ refresh-interval = "7d"
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
8 changes: 4 additions & 4 deletions examples/axum-app/config/config.prod.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=prod

name = "data-cube"
version = "0.6.2"
version = "0.6.3"

[dirs]
uploads = "local/uploads"
Expand Down Expand Up @@ -36,7 +36,7 @@ host = "127.0.0.1"
port = 3306
database = "data_cube"
username = "root"
password = "7xOJ/qj49ql4ENeTLUTM+josr6s"
password = "DHdS3+1IR6bLQjLI7pFu3Pu4XGs"

[[sqlite]]
database = "local/data/main.db"
Expand All @@ -52,12 +52,12 @@ port = 9000
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
8 changes: 4 additions & 4 deletions examples/dioxus-desktop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dioxus-desktop"
description = "An example for Dioxus desktop integration."
version = "0.0.2"
version = "0.0.3"
rust-version = "1.72"
edition = "2021"
publish = false
Expand All @@ -17,14 +17,14 @@ features = ["derive"]

[dependencies.zino]
path = "../../zino"
version = "0.12.3"
version = "0.13.0"
features = ["dioxus"]

[dependencies.zino-core]
path = "../../zino-core"
version = "0.13.3"
version = "0.14.0"
features = ["orm-sqlite"]

[dependencies.zino-model]
path = "../../zino-model"
version = "0.10.3"
version = "0.11.0"
6 changes: 3 additions & 3 deletions examples/dioxus-desktop/config/config.dev.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=dev

name = "data-cube"
version = "0.1.1"
version = "0.1.2"

[dirs]
uploads = "local/uploads"
Expand Down Expand Up @@ -33,12 +33,12 @@ refresh-interval = "7d"
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
6 changes: 3 additions & 3 deletions examples/dioxus-desktop/config/config.prod.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --env=prod

name = "data-cube"
version = "0.1.1"
version = "0.1.2"

[dirs]
uploads = "local/uploads"
Expand All @@ -28,12 +28,12 @@ port = 9000
[[connector]]
type = "arrow"
name = "mock"
root = "./local/data/mock/"
root = "local/data/mock/"

[[connector.tables]]
type = "csv"
name = "users"
path = "./users.csv"
path = "users.csv"

[[connector.tables]]
type = "ndjson"
Expand Down
2 changes: 1 addition & 1 deletion zino-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-core"
description = "Core types and traits for zino."
version = "0.13.3"
version = "0.14.0"
rust-version = "1.72"
edition = "2021"
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions zino-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-derive"
description = "Derived traits for zino."
version = "0.10.3"
version = "0.11.0"
rust-version = "1.72"
edition = "2021"
license = "MIT"
Expand All @@ -15,11 +15,11 @@ proc-macro = true

[dependencies]
convert_case = "0.6.0"
proc-macro2 = "1.0.66"
proc-macro2 = "1.0.68"
quote = "1.0.33"
syn = "2.0.38"

[dependencies.zino-core]
path = "../zino-core"
version = "0.13.3"
version = "0.14.0"
features = ["orm"]
6 changes: 3 additions & 3 deletions zino-model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino-model"
description = "Domain models for zino."
version = "0.10.3"
version = "0.11.0"
rust-version = "1.72"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -38,9 +38,9 @@ features = ["derive"]

[dependencies.zino-core]
path = "../zino-core"
version = "0.13.3"
version = "0.14.0"
features = ["orm"]

[dependencies.zino-derive]
path = "../zino-derive"
version = "0.10.3"
version = "0.11.0"
4 changes: 2 additions & 2 deletions zino/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "zino"
description = "Next-generation framework for composable applications in Rust."
version = "0.12.3"
version = "0.13.0"
rust-version = "1.72"
edition = "2021"
license = "MIT"
Expand Down Expand Up @@ -149,4 +149,4 @@ optional = true

[dependencies.zino-core]
path = "../zino-core"
version = "0.13.3"
version = "0.14.0"

0 comments on commit bc1b0d6

Please sign in to comment.