File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 18
18
name : Build extension binaries
19
19
uses :
duckdb/extension-ci-tools/.github/workflows/[email protected]
20
20
with :
21
- duckdb_version : v1.2.0
21
+ duckdb_version : v1.2.2
22
22
ci_tools_version : main
23
23
extension_name : pcap_reader
24
24
extra_toolchains : rust;python3
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " pcap_reader"
3
- version = " 0.1.1 "
3
+ version = " 0.1.2 "
4
4
edition = " 2021"
5
5
6
6
[lib ]
@@ -21,9 +21,9 @@ path = "src/wasm_lib.rs"
21
21
crate-type = [" staticlib" ]
22
22
23
23
[dependencies ]
24
- duckdb = { version = " 1.2.0 " , features = [" vtab-loadable" ] }
25
- duckdb-loadable-macros = " 0.1.4 "
26
- libduckdb-sys = { version = " 1.2.0 " , features = [" loadable-extension" ] }
24
+ duckdb = { version = " 1.2.2 " , features = [" vtab-loadable" ] }
25
+ duckdb-loadable-macros = " 0.1.5 "
26
+ libduckdb-sys = { version = " 1.2.2 " , features = [" loadable-extension" ] }
27
27
pcap-parser = " 0.16.0"
28
28
hex = " 0.4"
29
29
ehttp = " 0.5.0"
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ USE_UNSTABLE_C_API=1
8
8
9
9
# TODO: these values are currently duplicated in lib.rs. There's a PR open in duckdb-rs that fixes this
10
10
EXTENSION_NAME =pcap_reader
11
- MINIMUM_DUCKDB_VERSION =v1.2.0
12
- TARGET_DUCKDB_VERSION =v1.2.0
13
- DUCKDB_EXTENSION_MIN_DUCKDB_VERSION =v1.2.0
11
+ MINIMUM_DUCKDB_VERSION =v1.2.2
12
+ TARGET_DUCKDB_VERSION =v1.2.2
13
+ DUCKDB_EXTENSION_MIN_DUCKDB_VERSION =v1.2.2
14
14
15
15
all : configure debug
16
16
You can’t perform that action at this time.
0 commit comments