Skip to content

Commit e55ee30

Browse files
committed
internal: bump rust to 1.88.0
1 parent 2f7dfda commit e55ee30

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
edition = "2021"
7-
rust-version = "1.81.0"
6+
edition = "2024"
7+
rust-version = "1.88.0"
88
authors = ["Squawk Team & Contributors"]
99
license = "Apache-2.0 OR MIT"
1010

PLAN.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,15 @@ select name, created from u join t using (t_id);
449449
select name, u.created from u join t using (t_id);
450450
```
451451

452+
### Rule: invalid literal
453+
454+
Check for invalid literals
455+
456+
```sql
457+
select '{"foo": 1,}'::json;
458+
-- ^ invalid json, unexpected trailing comma
459+
```
460+
452461
### Rule: column label is the same as an existing column
453462

454463
```sql

crates/squawk_github/Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
[package]
22
name = "squawk_github"
33
version = "0.0.0"
4-
authors = ["Steve Dignam <[email protected]>"]
5-
edition = "2018"
4+
authors.workspace = true
5+
edition.workspace = true
66
license.workspace = true
7-
description = "Postgres SQL linter Github APIs used in Squawk"
8-
repository = "https://github.com/sbdchd/squawk"
9-
readme = "README.md"
10-
keywords = ["bot", "github", "linter"]
7+
readme.workspace = true
118

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

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "aarch64-apple-darwin"]
3-
channel = "1.84.0"
3+
channel = "1.88.0"

0 commit comments

Comments
 (0)