Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
karatakis committed Dec 14, 2023
1 parent 43aff8e commit 372cf01
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 30 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
itertools = { version = "0.11.0" }
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
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
12 changes: 6 additions & 6 deletions generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []

0 comments on commit 372cf01

Please sign in to comment.