From bc1b0d622be204f0cca5609e245d78931bf0bd27 Mon Sep 17 00:00:00 2001 From: photino Date: Sat, 7 Oct 2023 15:15:16 +0800 Subject: [PATCH] Release 0.14.0 --- examples/actix-app/Cargo.toml | 10 +++++----- examples/actix-app/config/config.dev.toml | 15 ++++----------- examples/actix-app/config/config.prod.toml | 15 ++++----------- examples/axum-app/Cargo.toml | 10 +++++----- examples/axum-app/config/config.dev.toml | 8 ++++---- examples/axum-app/config/config.prod.toml | 8 ++++---- examples/dioxus-desktop/Cargo.toml | 8 ++++---- examples/dioxus-desktop/config/config.dev.toml | 6 +++--- examples/dioxus-desktop/config/config.prod.toml | 6 +++--- zino-core/Cargo.toml | 2 +- zino-derive/Cargo.toml | 6 +++--- zino-model/Cargo.toml | 6 +++--- zino/Cargo.toml | 4 ++-- 13 files changed, 45 insertions(+), 59 deletions(-) diff --git a/examples/actix-app/Cargo.toml b/examples/actix-app/Cargo.toml index a7e3a303..fd08c646 100644 --- a/examples/actix-app/Cargo.toml +++ b/examples/actix-app/Cargo.toml @@ -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 @@ -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", @@ -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" diff --git a/examples/actix-app/config/config.dev.toml b/examples/actix-app/config/config.dev.toml index f7d29d53..df2211d5 100644 --- a/examples/actix-app/config/config.dev.toml +++ b/examples/actix-app/config/config.dev.toml @@ -1,7 +1,7 @@ # --env=dev name = "data-cube" -version = "0.6.2" +version = "0.6.3" [dirs] uploads = "local/uploads" @@ -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" @@ -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" diff --git a/examples/actix-app/config/config.prod.toml b/examples/actix-app/config/config.prod.toml index 968a54dd..06551e3a 100644 --- a/examples/actix-app/config/config.prod.toml +++ b/examples/actix-app/config/config.prod.toml @@ -1,7 +1,7 @@ # --env=prod name = "data-cube" -version = "0.6.2" +version = "0.6.3" [dirs] uploads = "local/uploads" @@ -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" @@ -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" diff --git a/examples/axum-app/Cargo.toml b/examples/axum-app/Cargo.toml index 78130d54..0d2f2ca9 100644 --- a/examples/axum-app/Cargo.toml +++ b/examples/axum-app/Cargo.toml @@ -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 @@ -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", @@ -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" diff --git a/examples/axum-app/config/config.dev.toml b/examples/axum-app/config/config.dev.toml index 371810aa..e35d35e7 100644 --- a/examples/axum-app/config/config.dev.toml +++ b/examples/axum-app/config/config.dev.toml @@ -1,7 +1,7 @@ # --env=dev name = "data-cube" -version = "0.6.2" +version = "0.6.3" [dirs] uploads = "local/uploads" @@ -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" @@ -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" diff --git a/examples/axum-app/config/config.prod.toml b/examples/axum-app/config/config.prod.toml index 08d75cd9..bb612ca8 100644 --- a/examples/axum-app/config/config.prod.toml +++ b/examples/axum-app/config/config.prod.toml @@ -1,7 +1,7 @@ # --env=prod name = "data-cube" -version = "0.6.2" +version = "0.6.3" [dirs] uploads = "local/uploads" @@ -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" @@ -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" diff --git a/examples/dioxus-desktop/Cargo.toml b/examples/dioxus-desktop/Cargo.toml index 0a109fab..ff5dcd5c 100644 --- a/examples/dioxus-desktop/Cargo.toml +++ b/examples/dioxus-desktop/Cargo.toml @@ -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 @@ -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" diff --git a/examples/dioxus-desktop/config/config.dev.toml b/examples/dioxus-desktop/config/config.dev.toml index b05b5d1e..8db89758 100644 --- a/examples/dioxus-desktop/config/config.dev.toml +++ b/examples/dioxus-desktop/config/config.dev.toml @@ -1,7 +1,7 @@ # --env=dev name = "data-cube" -version = "0.1.1" +version = "0.1.2" [dirs] uploads = "local/uploads" @@ -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" diff --git a/examples/dioxus-desktop/config/config.prod.toml b/examples/dioxus-desktop/config/config.prod.toml index 9ebc654f..d7f801e3 100644 --- a/examples/dioxus-desktop/config/config.prod.toml +++ b/examples/dioxus-desktop/config/config.prod.toml @@ -1,7 +1,7 @@ # --env=prod name = "data-cube" -version = "0.1.1" +version = "0.1.2" [dirs] uploads = "local/uploads" @@ -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" diff --git a/zino-core/Cargo.toml b/zino-core/Cargo.toml index 395177ac..64c7d425 100644 --- a/zino-core/Cargo.toml +++ b/zino-core/Cargo.toml @@ -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" diff --git a/zino-derive/Cargo.toml b/zino-derive/Cargo.toml index 459b4b2d..c682ccc1 100644 --- a/zino-derive/Cargo.toml +++ b/zino-derive/Cargo.toml @@ -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" @@ -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"] diff --git a/zino-model/Cargo.toml b/zino-model/Cargo.toml index 08d1b91a..3667ebd7 100644 --- a/zino-model/Cargo.toml +++ b/zino-model/Cargo.toml @@ -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" @@ -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" diff --git a/zino/Cargo.toml b/zino/Cargo.toml index 723c0f43..2f3ddc3e 100644 --- a/zino/Cargo.toml +++ b/zino/Cargo.toml @@ -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" @@ -149,4 +149,4 @@ optional = true [dependencies.zino-core] path = "../zino-core" -version = "0.13.3" +version = "0.14.0"