Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
Expand All @@ -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" }

Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"
url = "2.5.0"
4 changes: 2 additions & 2 deletions examples/mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ 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" }
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]
Expand Down
2 changes: 1 addition & 1 deletion examples/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions examples/sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ 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" }
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]
Expand Down
14 changes: 7 additions & 7 deletions generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"
itertools = "0.12.0"
sea-query = { version = "0.30.5", default-features = false }
thiserror = "1.0.50"
18 changes: 9 additions & 9 deletions generator/src/templates/actix_cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ name = "<seaography-package-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 = ["<seaography-sql-library>", "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 = ["<seaography-sql-library>", "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]
version = "<seaography-version>" # seaography version
features = ["with-decimal", "with-chrono"]

[dev-dependencies]
serde_json = { version = "1.0.103" }
serde_json = { version = "1.0.108" }

[workspace]
members = []
18 changes: 9 additions & 9 deletions generator/src/templates/poem_cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@ name = "<seaography-package-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 = ["<seaography-sql-library>", "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 = ["<seaography-sql-library>", "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]
version = "<seaography-version>" # seaography version
features = ["with-decimal", "with-chrono"]

[dev-dependencies]
serde_json = { version = "1.0.103" }
serde_json = { version = "1.0.108" }

[workspace]
members = []