quickhouse 0.2.3__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {quickhouse-0.2.3 → quickhouse-0.3.0}/Cargo.lock +74 -62
- {quickhouse-0.2.3 → quickhouse-0.3.0}/Cargo.toml +4 -1
- quickhouse-0.3.0/PKG-INFO +398 -0
- quickhouse-0.3.0/README.md +367 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/Cargo.toml +1 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/config.rs +169 -4
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/ddl.rs +1 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/decode.rs +102 -32
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/decode_bigquery.rs +68 -25
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/decode_mysql.rs +144 -32
- quickhouse-0.3.0/crates/quickhouse-core/src/error.rs +208 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/lib.rs +10 -9
- quickhouse-0.3.0/crates/quickhouse-core/src/sink/bigquery.rs +928 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/sink/clickhouse.rs +58 -28
- quickhouse-0.3.0/crates/quickhouse-core/src/sink/mod.rs +175 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/source/bigquery.rs +6 -2
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/source/mysql.rs +12 -3
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/source/postgres.rs +10 -5
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/sync.rs +419 -99
- quickhouse-0.3.0/crates/quickhouse-core/src/transform.rs +314 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/types.rs +175 -11
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-py/src/lib.rs +71 -17
- {quickhouse-0.2.3 → quickhouse-0.3.0}/pyproject.toml +1 -1
- {quickhouse-0.2.3 → quickhouse-0.3.0}/python/quickhouse/__init__.py +14 -6
- {quickhouse-0.2.3 → quickhouse-0.3.0}/python/quickhouse/_quickhouse.pyi +62 -8
- quickhouse-0.2.3/PKG-INFO +0 -319
- quickhouse-0.2.3/README.md +0 -288
- quickhouse-0.2.3/crates/quickhouse-core/src/error.rs +0 -53
- quickhouse-0.2.3/crates/quickhouse-core/src/sink/mod.rs +0 -3
- quickhouse-0.2.3/crates/quickhouse-core/src/transform.rs +0 -177
- {quickhouse-0.2.3 → quickhouse-0.3.0}/LICENSE +0 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/memory.rs +0 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-core/src/source/mod.rs +0 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/crates/quickhouse-py/Cargo.toml +0 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/python/quickhouse/progress.py +0 -0
- {quickhouse-0.2.3 → quickhouse-0.3.0}/python/quickhouse/py.typed +0 -0
|
@@ -65,9 +65,9 @@ dependencies = [
|
|
|
65
65
|
|
|
66
66
|
[[package]]
|
|
67
67
|
name = "anyhow"
|
|
68
|
-
version = "1.0.
|
|
68
|
+
version = "1.0.104"
|
|
69
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
70
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
71
71
|
|
|
72
72
|
[[package]]
|
|
73
73
|
name = "arrayvec"
|
|
@@ -325,13 +325,13 @@ dependencies = [
|
|
|
325
325
|
|
|
326
326
|
[[package]]
|
|
327
327
|
name = "async-trait"
|
|
328
|
-
version = "0.1.
|
|
328
|
+
version = "0.1.91"
|
|
329
329
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
-
checksum = "
|
|
330
|
+
checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
|
|
331
331
|
dependencies = [
|
|
332
332
|
"proc-macro2",
|
|
333
333
|
"quote",
|
|
334
|
-
"syn
|
|
334
|
+
"syn 3.0.2",
|
|
335
335
|
]
|
|
336
336
|
|
|
337
337
|
[[package]]
|
|
@@ -357,9 +357,9 @@ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
|
357
357
|
|
|
358
358
|
[[package]]
|
|
359
359
|
name = "aws-lc-rs"
|
|
360
|
-
version = "1.17.
|
|
360
|
+
version = "1.17.3"
|
|
361
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
-
checksum = "
|
|
362
|
+
checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1"
|
|
363
363
|
dependencies = [
|
|
364
364
|
"aws-lc-sys",
|
|
365
365
|
"zeroize",
|
|
@@ -367,9 +367,9 @@ dependencies = [
|
|
|
367
367
|
|
|
368
368
|
[[package]]
|
|
369
369
|
name = "aws-lc-sys"
|
|
370
|
-
version = "0.
|
|
370
|
+
version = "0.43.0"
|
|
371
371
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
-
checksum = "
|
|
372
|
+
checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c"
|
|
373
373
|
dependencies = [
|
|
374
374
|
"cc",
|
|
375
375
|
"cmake",
|
|
@@ -555,9 +555,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
|
555
555
|
|
|
556
556
|
[[package]]
|
|
557
557
|
name = "cc"
|
|
558
|
-
version = "1.
|
|
558
|
+
version = "1.3.0"
|
|
559
559
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
-
checksum = "
|
|
560
|
+
checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8"
|
|
561
561
|
dependencies = [
|
|
562
562
|
"find-msvc-tools",
|
|
563
563
|
"jobserver",
|
|
@@ -965,9 +965,9 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
965
965
|
|
|
966
966
|
[[package]]
|
|
967
967
|
name = "fastrand"
|
|
968
|
-
version = "2.
|
|
968
|
+
version = "2.5.0"
|
|
969
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
-
checksum = "
|
|
970
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
971
971
|
|
|
972
972
|
[[package]]
|
|
973
973
|
name = "find-msvc-tools"
|
|
@@ -1098,9 +1098,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
1098
1098
|
|
|
1099
1099
|
[[package]]
|
|
1100
1100
|
name = "futures"
|
|
1101
|
-
version = "0.3.
|
|
1101
|
+
version = "0.3.33"
|
|
1102
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
-
checksum = "
|
|
1103
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
1104
1104
|
dependencies = [
|
|
1105
1105
|
"futures-channel",
|
|
1106
1106
|
"futures-core",
|
|
@@ -1113,9 +1113,9 @@ dependencies = [
|
|
|
1113
1113
|
|
|
1114
1114
|
[[package]]
|
|
1115
1115
|
name = "futures-channel"
|
|
1116
|
-
version = "0.3.
|
|
1116
|
+
version = "0.3.33"
|
|
1117
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
-
checksum = "
|
|
1118
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
1119
1119
|
dependencies = [
|
|
1120
1120
|
"futures-core",
|
|
1121
1121
|
"futures-sink",
|
|
@@ -1123,15 +1123,15 @@ dependencies = [
|
|
|
1123
1123
|
|
|
1124
1124
|
[[package]]
|
|
1125
1125
|
name = "futures-core"
|
|
1126
|
-
version = "0.3.
|
|
1126
|
+
version = "0.3.33"
|
|
1127
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "
|
|
1128
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
1129
1129
|
|
|
1130
1130
|
[[package]]
|
|
1131
1131
|
name = "futures-executor"
|
|
1132
|
-
version = "0.3.
|
|
1132
|
+
version = "0.3.33"
|
|
1133
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1134
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
1135
1135
|
dependencies = [
|
|
1136
1136
|
"futures-core",
|
|
1137
1137
|
"futures-task",
|
|
@@ -1140,15 +1140,15 @@ dependencies = [
|
|
|
1140
1140
|
|
|
1141
1141
|
[[package]]
|
|
1142
1142
|
name = "futures-io"
|
|
1143
|
-
version = "0.3.
|
|
1143
|
+
version = "0.3.33"
|
|
1144
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
-
checksum = "
|
|
1145
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
1146
1146
|
|
|
1147
1147
|
[[package]]
|
|
1148
1148
|
name = "futures-macro"
|
|
1149
|
-
version = "0.3.
|
|
1149
|
+
version = "0.3.33"
|
|
1150
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
1151
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
1152
1152
|
dependencies = [
|
|
1153
1153
|
"proc-macro2",
|
|
1154
1154
|
"quote",
|
|
@@ -1157,21 +1157,21 @@ dependencies = [
|
|
|
1157
1157
|
|
|
1158
1158
|
[[package]]
|
|
1159
1159
|
name = "futures-sink"
|
|
1160
|
-
version = "0.3.
|
|
1160
|
+
version = "0.3.33"
|
|
1161
1161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
-
checksum = "
|
|
1162
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
1163
1163
|
|
|
1164
1164
|
[[package]]
|
|
1165
1165
|
name = "futures-task"
|
|
1166
|
-
version = "0.3.
|
|
1166
|
+
version = "0.3.33"
|
|
1167
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
-
checksum = "
|
|
1168
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
1169
1169
|
|
|
1170
1170
|
[[package]]
|
|
1171
1171
|
name = "futures-util"
|
|
1172
|
-
version = "0.3.
|
|
1172
|
+
version = "0.3.33"
|
|
1173
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
-
checksum = "
|
|
1174
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
1175
1175
|
dependencies = [
|
|
1176
1176
|
"futures-channel",
|
|
1177
1177
|
"futures-core",
|
|
@@ -1500,7 +1500,7 @@ dependencies = [
|
|
|
1500
1500
|
"tokio",
|
|
1501
1501
|
"tokio-rustls",
|
|
1502
1502
|
"tower-service",
|
|
1503
|
-
"webpki-roots 1.0.
|
|
1503
|
+
"webpki-roots 1.0.9",
|
|
1504
1504
|
]
|
|
1505
1505
|
|
|
1506
1506
|
[[package]]
|
|
@@ -2288,9 +2288,9 @@ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
|
2288
2288
|
|
|
2289
2289
|
[[package]]
|
|
2290
2290
|
name = "portable-atomic"
|
|
2291
|
-
version = "1.
|
|
2291
|
+
version = "1.14.0"
|
|
2292
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2293
|
-
checksum = "
|
|
2293
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
2294
2294
|
|
|
2295
2295
|
[[package]]
|
|
2296
2296
|
name = "postgres-protocol"
|
|
@@ -2382,9 +2382,9 @@ dependencies = [
|
|
|
2382
2382
|
|
|
2383
2383
|
[[package]]
|
|
2384
2384
|
name = "proc-macro2"
|
|
2385
|
-
version = "1.0.
|
|
2385
|
+
version = "1.0.107"
|
|
2386
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2387
|
-
checksum = "
|
|
2387
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
2388
2388
|
dependencies = [
|
|
2389
2389
|
"unicode-ident",
|
|
2390
2390
|
]
|
|
@@ -2506,13 +2506,14 @@ dependencies = [
|
|
|
2506
2506
|
|
|
2507
2507
|
[[package]]
|
|
2508
2508
|
name = "quickhouse-core"
|
|
2509
|
-
version = "0.
|
|
2509
|
+
version = "0.3.0"
|
|
2510
2510
|
dependencies = [
|
|
2511
2511
|
"anyhow",
|
|
2512
2512
|
"arrow",
|
|
2513
2513
|
"arrow-array",
|
|
2514
2514
|
"arrow-schema",
|
|
2515
2515
|
"async-compression",
|
|
2516
|
+
"base64 0.22.1",
|
|
2516
2517
|
"bytes",
|
|
2517
2518
|
"chrono",
|
|
2518
2519
|
"futures",
|
|
@@ -2536,7 +2537,7 @@ dependencies = [
|
|
|
2536
2537
|
|
|
2537
2538
|
[[package]]
|
|
2538
2539
|
name = "quickhouse-py"
|
|
2539
|
-
version = "0.
|
|
2540
|
+
version = "0.3.0"
|
|
2540
2541
|
dependencies = [
|
|
2541
2542
|
"pyo3",
|
|
2542
2543
|
"quickhouse-core",
|
|
@@ -2557,7 +2558,7 @@ dependencies = [
|
|
|
2557
2558
|
"rustc-hash",
|
|
2558
2559
|
"rustls",
|
|
2559
2560
|
"socket2 0.6.5",
|
|
2560
|
-
"thiserror 2.0.
|
|
2561
|
+
"thiserror 2.0.19",
|
|
2561
2562
|
"tokio",
|
|
2562
2563
|
"tracing",
|
|
2563
2564
|
"web-time",
|
|
@@ -2579,7 +2580,7 @@ dependencies = [
|
|
|
2579
2580
|
"rustls",
|
|
2580
2581
|
"rustls-pki-types",
|
|
2581
2582
|
"slab",
|
|
2582
|
-
"thiserror 2.0.
|
|
2583
|
+
"thiserror 2.0.19",
|
|
2583
2584
|
"tinyvec",
|
|
2584
2585
|
"tracing",
|
|
2585
2586
|
"web-time",
|
|
@@ -2601,9 +2602,9 @@ dependencies = [
|
|
|
2601
2602
|
|
|
2602
2603
|
[[package]]
|
|
2603
2604
|
name = "quote"
|
|
2604
|
-
version = "1.0.
|
|
2605
|
+
version = "1.0.47"
|
|
2605
2606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2606
|
-
checksum = "
|
|
2607
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
2607
2608
|
dependencies = [
|
|
2608
2609
|
"proc-macro2",
|
|
2609
2610
|
]
|
|
@@ -2770,7 +2771,7 @@ dependencies = [
|
|
|
2770
2771
|
"wasm-bindgen-futures",
|
|
2771
2772
|
"wasm-streams",
|
|
2772
2773
|
"web-sys",
|
|
2773
|
-
"webpki-roots 1.0.
|
|
2774
|
+
"webpki-roots 1.0.9",
|
|
2774
2775
|
]
|
|
2775
2776
|
|
|
2776
2777
|
[[package]]
|
|
@@ -2948,9 +2949,9 @@ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
|
2948
2949
|
|
|
2949
2950
|
[[package]]
|
|
2950
2951
|
name = "serde"
|
|
2951
|
-
version = "1.0.
|
|
2952
|
+
version = "1.0.229"
|
|
2952
2953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
-
checksum = "
|
|
2954
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2954
2955
|
dependencies = [
|
|
2955
2956
|
"serde_core",
|
|
2956
2957
|
"serde_derive",
|
|
@@ -2958,29 +2959,29 @@ dependencies = [
|
|
|
2958
2959
|
|
|
2959
2960
|
[[package]]
|
|
2960
2961
|
name = "serde_core"
|
|
2961
|
-
version = "1.0.
|
|
2962
|
+
version = "1.0.229"
|
|
2962
2963
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2963
|
-
checksum = "
|
|
2964
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2964
2965
|
dependencies = [
|
|
2965
2966
|
"serde_derive",
|
|
2966
2967
|
]
|
|
2967
2968
|
|
|
2968
2969
|
[[package]]
|
|
2969
2970
|
name = "serde_derive"
|
|
2970
|
-
version = "1.0.
|
|
2971
|
+
version = "1.0.229"
|
|
2971
2972
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2972
|
-
checksum = "
|
|
2973
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2973
2974
|
dependencies = [
|
|
2974
2975
|
"proc-macro2",
|
|
2975
2976
|
"quote",
|
|
2976
|
-
"syn
|
|
2977
|
+
"syn 3.0.2",
|
|
2977
2978
|
]
|
|
2978
2979
|
|
|
2979
2980
|
[[package]]
|
|
2980
2981
|
name = "serde_json"
|
|
2981
|
-
version = "1.0.
|
|
2982
|
+
version = "1.0.151"
|
|
2982
2983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2983
|
-
checksum = "
|
|
2984
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
2984
2985
|
dependencies = [
|
|
2985
2986
|
"itoa",
|
|
2986
2987
|
"memchr",
|
|
@@ -3075,7 +3076,7 @@ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
|
3075
3076
|
dependencies = [
|
|
3076
3077
|
"num-bigint",
|
|
3077
3078
|
"num-traits",
|
|
3078
|
-
"thiserror 2.0.
|
|
3079
|
+
"thiserror 2.0.19",
|
|
3079
3080
|
"time",
|
|
3080
3081
|
]
|
|
3081
3082
|
|
|
@@ -3194,6 +3195,17 @@ dependencies = [
|
|
|
3194
3195
|
"unicode-ident",
|
|
3195
3196
|
]
|
|
3196
3197
|
|
|
3198
|
+
[[package]]
|
|
3199
|
+
name = "syn"
|
|
3200
|
+
version = "3.0.2"
|
|
3201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
+
checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
|
|
3203
|
+
dependencies = [
|
|
3204
|
+
"proc-macro2",
|
|
3205
|
+
"quote",
|
|
3206
|
+
"unicode-ident",
|
|
3207
|
+
]
|
|
3208
|
+
|
|
3197
3209
|
[[package]]
|
|
3198
3210
|
name = "sync_wrapper"
|
|
3199
3211
|
version = "1.0.2"
|
|
@@ -3246,11 +3258,11 @@ dependencies = [
|
|
|
3246
3258
|
|
|
3247
3259
|
[[package]]
|
|
3248
3260
|
name = "thiserror"
|
|
3249
|
-
version = "2.0.
|
|
3261
|
+
version = "2.0.19"
|
|
3250
3262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
-
checksum = "
|
|
3263
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
3252
3264
|
dependencies = [
|
|
3253
|
-
"thiserror-impl 2.0.
|
|
3265
|
+
"thiserror-impl 2.0.19",
|
|
3254
3266
|
]
|
|
3255
3267
|
|
|
3256
3268
|
[[package]]
|
|
@@ -3266,13 +3278,13 @@ dependencies = [
|
|
|
3266
3278
|
|
|
3267
3279
|
[[package]]
|
|
3268
3280
|
name = "thiserror-impl"
|
|
3269
|
-
version = "2.0.
|
|
3281
|
+
version = "2.0.19"
|
|
3270
3282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3271
|
-
checksum = "
|
|
3283
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
3272
3284
|
dependencies = [
|
|
3273
3285
|
"proc-macro2",
|
|
3274
3286
|
"quote",
|
|
3275
|
-
"syn
|
|
3287
|
+
"syn 3.0.2",
|
|
3276
3288
|
]
|
|
3277
3289
|
|
|
3278
3290
|
[[package]]
|
|
@@ -3934,14 +3946,14 @@ version = "0.26.11"
|
|
|
3934
3946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
3947
|
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
3936
3948
|
dependencies = [
|
|
3937
|
-
"webpki-roots 1.0.
|
|
3949
|
+
"webpki-roots 1.0.9",
|
|
3938
3950
|
]
|
|
3939
3951
|
|
|
3940
3952
|
[[package]]
|
|
3941
3953
|
name = "webpki-roots"
|
|
3942
|
-
version = "1.0.
|
|
3954
|
+
version = "1.0.9"
|
|
3943
3955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
-
checksum = "
|
|
3956
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
3945
3957
|
dependencies = [
|
|
3946
3958
|
"rustls-pki-types",
|
|
3947
3959
|
]
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/quickhouse-core", "crates/quickhouse-py"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "0.
|
|
6
|
+
version = "0.3.0"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
license = "MIT"
|
|
9
9
|
authors = ["quickhouse contributors"]
|
|
@@ -39,6 +39,9 @@ mysql_async = { version = "0.34", default-features = false, features = ["default
|
|
|
39
39
|
google-cloud-bigquery = { version = "0.15", default-features = false, features = ["auth", "rustls-tls"] }
|
|
40
40
|
google-cloud-googleapis = { version = "0.16", features = ["bigquery"] }
|
|
41
41
|
time = { version = "0.3", features = ["macros"] }
|
|
42
|
+
# Only used to encode Binary columns as BigQuery's BYTES JSON representation
|
|
43
|
+
# (base64 text) for the insertAll destination path.
|
|
44
|
+
base64 = "0.22"
|
|
42
45
|
|
|
43
46
|
# Faster release builds for the shipped wheel.
|
|
44
47
|
[profile.release]
|