Skip to content

Commit d52852b

Browse files
committed
fix: rust version
1 parent 8ff24b7 commit d52852b

35 files changed

+112
-75
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,8 @@ lcov.info
2929

3030
# Redis dump files
3131
*.rdb
32-
dump.rdb
32+
dump.rdb
33+
34+
# Claude
35+
CLAUDE.md
36+
.claude/

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ members = [
99

1010
[workspace.package]
1111
version = "0.1.0"
12-
edition = "2021"
13-
rust-version = "1.75"
12+
edition = "2024"
13+
rust-version = "1.89"
1414
authors = ["Redis Field Engineering <[email protected]>"]
1515
license = "MIT OR Apache-2.0"
1616
repository = "https://github.com/redis-field-engineering/redisctl"
@@ -70,4 +70,4 @@ panic = "abort"
7070

7171
[profile.dev]
7272
opt-level = 0
73-
debug = true
73+
debug = true

crates/redis-cloud/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ url = { workspace = true }
2929
wiremock = { workspace = true }
3030
tokio = { workspace = true, features = ["rt", "macros", "test-util"] }
3131
pretty_assertions = { workspace = true }
32-
serial_test = { workspace = true }
32+
serial_test = { workspace = true }

crates/redis-cloud/src/handlers/account.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//! Account operations handler
22
33
use crate::{
4+
Result,
45
client::CloudClient,
56
models::{AccountResponse, CloudAccount},
6-
Result,
77
};
88
use serde_json::Value;
99

crates/redis-cloud/src/handlers/acl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! ACL and RBAC operations handler
22
3-
use crate::{client::CloudClient, Result};
3+
use crate::{Result, client::CloudClient};
44
use serde_json::Value;
55

66
/// Handler for Cloud ACL/RBAC operations

crates/redis-cloud/src/handlers/api_keys.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! API keys management handler
22
3-
use crate::{client::CloudClient, Result};
3+
use crate::{Result, client::CloudClient};
44
use serde_json::Value;
55

66
/// Handler for Cloud API keys management

crates/redis-cloud/src/handlers/backup.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//! Backup operations handler
22
33
use crate::{
4+
Result,
45
client::CloudClient,
56
models::{CloudBackup, CreateBackupRequest},
6-
Result,
77
};
88
use serde_json::Value;
99

crates/redis-cloud/src/handlers/billing.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Billing and payment operations handler
22
3-
use crate::{client::CloudClient, Result};
3+
use crate::{Result, client::CloudClient};
44
use serde_json::Value;
55

66
/// Handler for Cloud billing and payment operations

crates/redis-cloud/src/handlers/cloud_accounts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Cloud account operations handler
22
3-
use crate::{client::CloudClient, Result};
3+
use crate::{Result, client::CloudClient};
44
use serde_json::Value;
55

66
/// Handler for Cloud account operations

crates/redis-cloud/src/handlers/crdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Active-Active (CRDB) database operations handler
22
3-
use crate::{client::CloudClient, Result};
3+
use crate::{Result, client::CloudClient};
44
use serde_json::Value;
55

66
/// Handler for Cloud Active-Active database operations

0 commit comments

Comments
 (0)