diff --git a/Cargo.toml b/Cargo.toml index 59c4e3c1..a90616d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "cli", "generator"] [package] name = "seaography" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" edition = "2021" rust-version = "1.60" authors = ["Panagiotis Karatakis "] @@ -16,11 +16,11 @@ keywords = ["async", "graphql", "mysql", "postgres", "sqlite"] categories = ["database"] [dependencies] -async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } -sea-orm = { version = "0.12.0", default-features = false, features = ["seaography"] } +async-graphql = { version = "6.0.11", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } +sea-orm = { version = "0.12.10", default-features = false, features = ["seaography"] } itertools = { version = "0.12.0" } heck = { version = "0.4.1" } -thiserror = { version = "1.0.44" } +thiserror = { version = "1.0.50" } async-trait = { version = "0.1" } fnv = { version = "1.0.7" } diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9b304418..0d102117 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seaography-cli" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" edition = "2021" rust-version = "1.60" authors = ["Panagiotis Karatakis "] @@ -14,6 +14,6 @@ categories = ["database"] [dependencies] async-std = { version = "1.12.0", features = [ "attributes", "tokio1" ] } -clap = { version = "4.3.19", features = ["derive"] } +clap = { version = "4.4.11", features = ["derive"] } seaography-generator = { version = "^1.0.0-rc.2", path = "../generator" } -url = "2.4.0" \ No newline at end of file +url = "2.5.0" \ No newline at end of file diff --git a/examples/mysql/Cargo.toml b/examples/mysql/Cargo.toml index 9f7bcd73..1e24f78f 100644 --- a/examples/mysql/Cargo.toml +++ b/examples/mysql/Cargo.toml @@ -9,7 +9,7 @@ async-graphql-poem = { version = "6.0.7" } async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } async-trait = { version = "0.1.72" } dotenv = "0.15.0" -sea-orm = { version = "0.12.0", features = ["sqlx-mysql", "runtime-async-std-native-tls", "seaography"] } +sea-orm = { version = "0.12.10", features = ["sqlx-mysql", "runtime-async-std-native-tls", "seaography"] } tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.17" } @@ -17,7 +17,7 @@ lazy_static = { version = "1.4.0" } [dependencies.seaography] path = "../../" -version = "1.0.0-rc.2" # seaography version +version = "1.0.0-rc.3" # seaography version features = ["with-decimal", "with-chrono"] [dev-dependencies] diff --git a/examples/postgres/Cargo.toml b/examples/postgres/Cargo.toml index 4cf1be6f..8b25dc5a 100644 --- a/examples/postgres/Cargo.toml +++ b/examples/postgres/Cargo.toml @@ -9,7 +9,7 @@ async-graphql-poem = { version = "6.0.7" } async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } async-trait = { version = "0.1.72" } dotenv = "0.15.0" -sea-orm = { version = "0.12.0", features = ["sqlx-postgres", "runtime-async-std-native-tls", "seaography"] } +sea-orm = { version = "0.12.10", features = ["sqlx-postgres", "runtime-async-std-native-tls", "seaography"] } tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.17" } diff --git a/examples/sqlite/Cargo.toml b/examples/sqlite/Cargo.toml index ceced47d..70e6ba29 100644 --- a/examples/sqlite/Cargo.toml +++ b/examples/sqlite/Cargo.toml @@ -9,7 +9,7 @@ async-graphql-poem = { version = "6.0.7" } async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } async-trait = { version = "0.1.72" } dotenv = "0.15.0" -sea-orm = { version = "0.12.0", features = ["sqlx-sqlite", "runtime-async-std-native-tls", "seaography"] } +sea-orm = { version = "0.12.10", features = ["sqlx-sqlite", "runtime-async-std-native-tls", "seaography"] } tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } tracing = { version = "0.1.37" } tracing-subscriber = { version = "0.3.17" } @@ -17,7 +17,7 @@ lazy_static = { version = "1.4.0" } [dependencies.seaography] path = "../../" -version = "1.0.0-rc.2" # seaography version +version = "1.0.0-rc.3" # seaography version features = ["with-decimal", "with-chrono"] [dev-dependencies] diff --git a/generator/Cargo.toml b/generator/Cargo.toml index 89fb7f86..1cd6bba6 100644 --- a/generator/Cargo.toml +++ b/generator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "seaography-generator" -version = "1.0.0-rc.2" +version = "1.0.0-rc.3" edition = "2021" rust-version = "1.60" authors = ["Panagiotis Karatakis "] @@ -13,10 +13,10 @@ keywords = ["async", "graphql", "mysql", "postgres", "sqlite"] categories = ["database"] [dependencies] -quote = "1.0.31" -proc-macro2 = "1.0.66" -syn = { version = "2.0.27", features = ["full"] } +quote = "1.0.33" +proc-macro2 = "1.0.70" +syn = { version = "2.0.41", features = ["full"] } heck = "0.4.1" -itertools = "0.11.0" -sea-query = { version = "0.30.0", default-features = false } -thiserror = "1.0.44" \ No newline at end of file +itertools = "0.12.0" +sea-query = { version = "0.30.5", default-features = false } +thiserror = "1.0.50" \ No newline at end of file diff --git a/generator/src/templates/actix_cargo.toml b/generator/src/templates/actix_cargo.toml index e9396e55..e79808f5 100644 --- a/generator/src/templates/actix_cargo.toml +++ b/generator/src/templates/actix_cargo.toml @@ -4,15 +4,15 @@ name = "" version = "0.3.0" [dependencies] -actix-web = { version = "4.3.1", default-features = false, features = ["macros"] } -async-graphql-actix-web = { version = "6.0.7" } -async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } -async-trait = { version = "0.1.72" } +actix-web = { version = "4.4.0", default-features = false, features = ["macros"] } +async-graphql-actix-web = { version = "6.0.11" } +async-graphql = { version = "6.0.11", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } +async-trait = { version = "0.1.74" } dotenv = "0.15.0" -sea-orm = { version = "0.12.0", features = ["", "runtime-async-std-native-tls", "seaography"] } -tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } -tracing = { version = "0.1.37" } -tracing-subscriber = { version = "0.3.17" } +sea-orm = { version = "0.12.10", features = ["", "runtime-async-std-native-tls", "seaography"] } +tokio = { version = "1.35.0", features = ["macros", "rt-multi-thread"] } +tracing = { version = "0.1.40" } +tracing-subscriber = { version = "0.3.18" } lazy_static = { version = "1.4.0" } [dependencies.seaography] @@ -20,7 +20,7 @@ version = "" # seaography version features = ["with-decimal", "with-chrono"] [dev-dependencies] -serde_json = { version = "1.0.103" } +serde_json = { version = "1.0.108" } [workspace] members = [] \ No newline at end of file diff --git a/generator/src/templates/poem_cargo.toml b/generator/src/templates/poem_cargo.toml index 462f0d1b..bb64319d 100644 --- a/generator/src/templates/poem_cargo.toml +++ b/generator/src/templates/poem_cargo.toml @@ -4,15 +4,15 @@ name = "" version = "0.3.0" [dependencies] -poem = { version = "1.3.56" } -async-graphql-poem = { version = "6.0.7" } -async-graphql = { version = "6.0.7", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } -async-trait = { version = "0.1.72" } +poem = { version = "1.3.59" } +async-graphql-poem = { version = "6.0.11" } +async-graphql = { version = "6.0.11", features = ["decimal", "chrono", "dataloader", "dynamic-schema"] } +async-trait = { version = "0.1.74" } dotenv = "0.15.0" -sea-orm = { version = "0.12.0", features = ["", "runtime-async-std-native-tls", "seaography"] } -tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] } -tracing = { version = "0.1.37" } -tracing-subscriber = { version = "0.3.17" } +sea-orm = { version = "0.12.10", features = ["", "runtime-async-std-native-tls", "seaography"] } +tokio = { version = "1.35", features = ["macros", "rt-multi-thread"] } +tracing = { version = "0.1.40" } +tracing-subscriber = { version = "0.3.18" } lazy_static = { version = "1.4.0" } [dependencies.seaography] @@ -20,7 +20,7 @@ version = "" # seaography version features = ["with-decimal", "with-chrono"] [dev-dependencies] -serde_json = { version = "1.0.103" } +serde_json = { version = "1.0.108" } [workspace] members = [] \ No newline at end of file