Skip to content

Commit 56449d8

Browse files
committed
update: scylla-driver-version 1.4
1 parent 7b9d351 commit 56449d8

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charybdis-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
criterion = "0.5.1"
88
charybdis = { path = "../charybdis" }
99
chrono = "0.4.39"
10-
scylla = "1.3"
10+
scylla = "1.4"
1111
tokio = { version = "1.42.0", features = ["rt-multi-thread"] }
1212

1313

charybdis-macros/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
[package]
22
name = "charybdis_macros"
33
rust-version = "1.75.0"
4-
version = "1.0.3"
4+
version = "1.0.4"
55
edition = "2021"
66
description = "Proc macro crate for Charybdis ORM"
7-
repository = "https://github.com/nodecosmos/charybdis"
7+
repository = "https://github.com/goranbrkuljan/charybdis"
88
license = "MIT"
99
categories = ["database"]
1010

1111
[lib]
1212
proc-macro = true
1313

1414
[dependencies]
15-
charybdis_parser = { version = "1.0.3", path = "../charybdis-parser" }
15+
charybdis_parser = { version = "1.0.4", path = "../charybdis-parser" }
1616
proc-macro2 = "1.0.81"
1717
syn = { version = "2.0.60", features = ["full"] }
1818
quote = "1.0.36"
1919

2020
[dev-dependencies]
2121
charybdis = { path = "../charybdis" }
22-
scylla = "1.3"
22+
scylla = "1.4"
2323
chrono = "0.4.38"
2424

2525
[lints]

charybdis-migrate/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "charybdis-migrate"
33
rust-version = "1.75.0"
4-
version = "1.0.3"
4+
version = "1.0.4"
55
edition = "2021"
66
description = "Automatic Migration Tool for Charybdis ORM"
7-
repository = "https://github.com/nodecosmos/charybdis"
7+
repository = "https://github.com/goranbrkuljan/charybdis"
88
license = "MIT"
99
categories = ["database"]
1010

1111
[dependencies]
12-
charybdis_parser = { version = "1.0.3", path = "../charybdis-parser" }
13-
scylla = { version = "1.3", features = ["openssl-010"] }
12+
charybdis_parser = { version = "1.0.4", path = "../charybdis-parser" }
13+
scylla = { version = "1.4", features = ["openssl-010"] }
1414
tokio = { version = "1.38.0", features = ["full"] }
1515
colored = "3.0.0"
1616
strip-ansi-escapes = "0.2.0"

charybdis-parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "charybdis_parser"
33
rust-version = "1.75.0"
4-
version = "1.0.3"
4+
version = "1.0.4"
55
edition = "2021"
66
description = "Parser crate for Charybdis ORM"
7-
repository = "https://github.com/nodecosmos/charybdis"
7+
repository = "https://github.com/goranbrkuljan/charybdis"
88
license = "MIT"
99
categories = ["database"]
1010

@@ -13,7 +13,7 @@ proc-macro2 = "1.0.81"
1313
syn = { version = "2.0.60", features = ["full"] }
1414
quote = "1.0.36"
1515
serde = { version = "1.0.200", features = ["derive"] }
16-
scylla = "1.3"
16+
scylla = "1.4"
1717
serde_json = "1.0.116"
1818
colored = { version = "3.0.0", features = [] }
1919
walkdir = "2.5.0"

charybdis/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[package]
22
name = "charybdis"
33
rust-version = "1.75.0"
4-
version = "1.0.3"
4+
version = "1.0.4"
55
edition = "2021"
66
description = "High-Performance ORM for ScyllaDB"
7-
repository = "https://github.com/nodecosmos/charybdis"
7+
repository = "https://github.com/goranbrkuljan/charybdis"
88
license = "MIT"
99
categories = ["database"]
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
charybdis-migrate = { version = "1.0.3", path = "../charybdis-migrate", optional = true }
15-
charybdis_macros = { version = "1.0.3", path = "../charybdis-macros" }
14+
charybdis-migrate = { version = "1.0.4", path = "../charybdis-migrate", optional = true }
15+
charybdis_macros = { version = "1.0.4", path = "../charybdis-macros" }
1616
chrono = { version = "0.4.38", features = ["serde"] }
1717
futures = "0.3.30"
18-
scylla = { version = "1.3", features = ["full-serialization"] }
18+
scylla = { version = "1.4", features = ["full-serialization"] }
1919
uuid = { version = "1.8.0", features = ["v1", "v4", "serde"] }
2020
serde_json = "1.0.116"
2121
serde = { version = "1.0.200", features = ["derive"] }

charybdis/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![License](https://img.shields.io/crates/l/charybdis)]()
55
[![Docs.rs](https://docs.rs/charybdis/badge.svg)](https://docs.rs/charybdis)
66
[![Discord](https://img.shields.io/discord/1247167793045176461?label=discord-server)](https://discord.gg/enDd57nNen)
7-
![Build](https://github.com/nodecosmos/charybdis/actions/workflows/build.yml/badge.svg)
7+
![Build](https://github.com/goranbrkuljan/charybdis/actions/workflows/build.yml/badge.svg)
88
<p>
99
<img src="https://www.scylladb.com/wp-content/uploads/scylla-opensource-1.png" width="150" alt="scylla_logo">
1010
<img src="https://upload.wikimedia.org/wikipedia/commons/5/5e/Cassandra_logo.svg" width="150" alt="cassandra_logo">
@@ -75,8 +75,8 @@ version of scylla should match the one used by the charybdis crate.
7575

7676
```toml
7777
[dependencies]
78-
scylla = "1.3"
79-
charybdis = "1.0.3"
78+
scylla = "1.4"
79+
charybdis = "1.0.4"
8080
```
8181

8282
### Define Tables

examples/actix-web/reddit-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ tokio = { version = "1.42.0", features = ["rt-multi-thread"] }
88
serde = { version = "1.0.204", features = ["derive"] }
99
serde_json = "1.0.120"
1010
actix-web = { version = "4.9.0", features = ["cookies"] }
11-
charybdis = { version = "1.0.3", features = ["migrate"], path = "../../../charybdis" }
11+
charybdis = { version = "1.0.4", features = ["migrate"], path = "../../../charybdis" }
1212
log = "0.4.20"
13-
scylla = { version = "1.3" }
13+
scylla = { version = "1.4" }
1414
chrono = "0.4.39"
1515
actix-http = "3.9.0"
1616
futures = "0.3.31"

0 commit comments

Comments
 (0)