Skip to content

Commit a8499a3

Browse files
authored
2 parents c20ace3 + 44edc9e commit a8499a3

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/rust.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,7 @@ jobs:
6666

6767
- name: Dry-run release of crates
6868
if: matrix.os == 'ubuntu-latest'
69-
uses: katyo/publish-crates@v2
70-
with:
71-
path: "./"
72-
args: --allow-dirty --all-features
73-
dry-run: true
74-
ignore-unpublished-changes: true
69+
run: cargo publish --workspace --dry-run
7570

7671
# For windows
7772
- name: Windows extract duckdb

crates/duckdb/src/vtab/excel.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ use super::{BindInfo, DataChunkHandle, InitInfo, LogicalTypeHandle, TableFunctio
44
use crate::core::{Inserter, LogicalTypeId};
55
use calamine::{open_workbook_auto, Data, DataType, Range, Reader};
66

7+
#[allow(dead_code)]
78
#[repr(C)]
89
struct ExcelBindData {
910
range: Range<Data>,
1011
width: usize,
1112
height: usize,
1213
}
1314

15+
#[allow(dead_code)]
1416
#[repr(C)]
1517
struct ExcelInitData {
1618
start: AtomicUsize,

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.89"
2+
channel = "1.90"
33
components = ["rustfmt", "clippy"]

0 commit comments

Comments
 (0)