File tree Expand file tree Collapse file tree 11 files changed +56
-13
lines changed Expand file tree Collapse file tree 11 files changed +56
-13
lines changed Original file line number Diff line number Diff line change 25
25
uses : actions/checkout@v4
26
26
27
27
- name : Set up Rust
28
- uses : dtolnay/rust-toolchain@stable
28
+ uses : dtolnay/rust-toolchain@1.88.0
29
29
with :
30
30
components : ${{ matrix.check == 'fmt' && 'rustfmt' || 'clippy' }}
31
31
57
57
uses : actions/checkout@v4
58
58
59
59
- name : Set up Rust
60
- uses : dtolnay/rust-toolchain@stable
60
+ uses : dtolnay/rust-toolchain@1.88.0
61
61
62
62
- name : Cache Cargo
63
63
uses : Swatinem/rust-cache@v2
@@ -116,7 +116,7 @@ jobs:
116
116
uses : actions/checkout@v4
117
117
118
118
- name : Set up Rust
119
- uses : dtolnay/rust-toolchain@stable
119
+ uses : dtolnay/rust-toolchain@1.88.0
120
120
121
121
- name : Cache Cargo
122
122
uses : Swatinem/rust-cache@v2
Original file line number Diff line number Diff line change 1
1
[workspace ]
2
- resolver = " 2 "
2
+ resolver = " 3 "
3
3
members = [
4
4
" etl" ,
5
5
" etl-api" ,
@@ -12,6 +12,13 @@ members = [
12
12
" etl-telemetry" ,
13
13
]
14
14
15
+ [workspace .package ]
16
+ license = " Apache-2.0"
17
+ edition = " 2024"
18
+ rust-version = " 1.88.0"
19
+ repository = " https://github.com/supabase/etl"
20
+ homepage = " https://supabase.github.io/etl/"
21
+
15
22
[workspace .dependencies ]
16
23
etl = { path = " etl" , default-features = false }
17
24
etl-api = { path = " etl-api" , default-features = false }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-api"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[lib ]
7
11
path = " src/lib.rs"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-benchmarks"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[dev-dependencies ]
7
11
etl = { workspace = true , features = [" test-utils" ] }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-config"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[features ]
7
11
utoipa = [" dep:utoipa" ]
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-destinations"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[features ]
7
11
bigquery = [
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-examples"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[dependencies ]
7
11
etl = { workspace = true }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-postgres"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[features ]
7
11
test-utils = []
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-replicator"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[dependencies ]
7
11
etl = { workspace = true , features = [" unknown-types-to-bytes" ] }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " etl-telemetry"
3
3
version = " 0.1.0"
4
- edition = " 2024"
4
+ edition.workspace = true
5
+ license.workspace = true
6
+ rust-version.workspace = true
7
+ repository.workspace = true
8
+ homepage.workspace = true
5
9
6
10
[dependencies ]
7
11
etl-config = { workspace = true }
You can’t perform that action at this time.
0 commit comments