Skip to content

Commit

Permalink
Update all versions (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasperav authored Sep 7, 2023
1 parent 1d62b1b commit cbacc3a
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 104 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scylla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install stable 1.66
uses: actions-rs/toolchain@v1
with:
toolchain: 1.66.0
toolchain: 1.72.0
default: true
components: rustfmt, clippy
- name: Load .env file
Expand Down
105 changes: 47 additions & 58 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 20 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ members = [
"catalytic_macro",
"catalytic_query_parser",
]
resolver = "2"

[workspace.package]
edition = "2021"
version = "0.1.15"
version = "0.1.17"
authors = ["Jasper Visser <[email protected]>"]
repository = "https://github.com/Jasperav/catalytic"
readme = "../README.md"
Expand All @@ -18,21 +19,21 @@ categories = ["database"]
license = "MIT"

[workspace.dependencies]
scylla = "0.9.0"
once_cell = "1.18.0"
heck = "0.4.1"
tokio = { version = "1.29.1", features = ["time", "rt-multi-thread", "io-util"] }
thiserror = "1.0.44"
futures-util = "0.3.28"
syn = { version = "2.0.28", features = ["full", "extra-traits"] }
quote = "1.0.32"
proc-macro2 = "1.0.66"
serde = { version = "1.0.182", features = ["derive"] }
serde_json = "1.0.104"
proc_macro2_helper = "0.2.10"
uuid = "1.4.1"
regex = "1.9.3"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
trybuild = "1.0.82"
dotenv = "0.15.0"
scylla = "0.9.0" # This crate is specifically build for this version
once_cell = "1.18"
heck = "0.4"
tokio = { version = "1", features = ["time", "rt-multi-thread", "io-util"] }
thiserror = "1"
futures-util = "0.3"
syn = { version = "2", features = ["full", "extra-traits"] }
quote = "1"
proc-macro2 = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
proc_macro2_helper = "0.2"
uuid = "1"
regex = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
trybuild = "1.0"
dotenv = "0.15"
Loading

0 comments on commit cbacc3a

Please sign in to comment.