quickhouse 0.2.0__tar.gz → 0.2.4__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.0 → quickhouse-0.2.4}/Cargo.lock +79 -65
- {quickhouse-0.2.0 → quickhouse-0.2.4}/Cargo.toml +3 -2
- quickhouse-0.2.4/PKG-INFO +289 -0
- quickhouse-0.2.4/README.md +258 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/Cargo.toml +2 -1
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/config.rs +84 -6
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/ddl.rs +1 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/decode.rs +67 -23
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/decode_bigquery.rs +53 -22
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/decode_mysql.rs +129 -28
- quickhouse-0.2.4/crates/quickhouse-core/src/error.rs +90 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/lib.rs +1 -0
- quickhouse-0.2.4/crates/quickhouse-core/src/memory.rs +146 -0
- quickhouse-0.2.4/crates/quickhouse-core/src/sink/clickhouse.rs +297 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/source/mysql.rs +6 -1
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/sync.rs +207 -59
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/transform.rs +1 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/types.rs +69 -10
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-py/src/lib.rs +6 -2
- {quickhouse-0.2.0 → quickhouse-0.2.4}/pyproject.toml +1 -1
- {quickhouse-0.2.0 → quickhouse-0.2.4}/python/quickhouse/_quickhouse.pyi +20 -3
- quickhouse-0.2.0/PKG-INFO +0 -316
- quickhouse-0.2.0/README.md +0 -285
- quickhouse-0.2.0/crates/quickhouse-core/src/error.rs +0 -53
- quickhouse-0.2.0/crates/quickhouse-core/src/sink/clickhouse.rs +0 -166
- {quickhouse-0.2.0 → quickhouse-0.2.4}/LICENSE +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/sink/mod.rs +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/source/bigquery.rs +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/source/mod.rs +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-core/src/source/postgres.rs +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/crates/quickhouse-py/Cargo.toml +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/python/quickhouse/__init__.py +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/python/quickhouse/progress.py +0 -0
- {quickhouse-0.2.0 → quickhouse-0.2.4}/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.1",
|
|
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",
|
|
@@ -644,6 +644,8 @@ dependencies = [
|
|
|
644
644
|
"compression-core",
|
|
645
645
|
"flate2",
|
|
646
646
|
"memchr",
|
|
647
|
+
"zstd",
|
|
648
|
+
"zstd-safe",
|
|
647
649
|
]
|
|
648
650
|
|
|
649
651
|
[[package]]
|
|
@@ -963,9 +965,9 @@ checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
963
965
|
|
|
964
966
|
[[package]]
|
|
965
967
|
name = "fastrand"
|
|
966
|
-
version = "2.
|
|
968
|
+
version = "2.5.0"
|
|
967
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
-
checksum = "
|
|
970
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
969
971
|
|
|
970
972
|
[[package]]
|
|
971
973
|
name = "find-msvc-tools"
|
|
@@ -1096,9 +1098,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
1096
1098
|
|
|
1097
1099
|
[[package]]
|
|
1098
1100
|
name = "futures"
|
|
1099
|
-
version = "0.3.
|
|
1101
|
+
version = "0.3.33"
|
|
1100
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
-
checksum = "
|
|
1103
|
+
checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218"
|
|
1102
1104
|
dependencies = [
|
|
1103
1105
|
"futures-channel",
|
|
1104
1106
|
"futures-core",
|
|
@@ -1111,9 +1113,9 @@ dependencies = [
|
|
|
1111
1113
|
|
|
1112
1114
|
[[package]]
|
|
1113
1115
|
name = "futures-channel"
|
|
1114
|
-
version = "0.3.
|
|
1116
|
+
version = "0.3.33"
|
|
1115
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
-
checksum = "
|
|
1118
|
+
checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae"
|
|
1117
1119
|
dependencies = [
|
|
1118
1120
|
"futures-core",
|
|
1119
1121
|
"futures-sink",
|
|
@@ -1121,15 +1123,15 @@ dependencies = [
|
|
|
1121
1123
|
|
|
1122
1124
|
[[package]]
|
|
1123
1125
|
name = "futures-core"
|
|
1124
|
-
version = "0.3.
|
|
1126
|
+
version = "0.3.33"
|
|
1125
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
-
checksum = "
|
|
1128
|
+
checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
|
|
1127
1129
|
|
|
1128
1130
|
[[package]]
|
|
1129
1131
|
name = "futures-executor"
|
|
1130
|
-
version = "0.3.
|
|
1132
|
+
version = "0.3.33"
|
|
1131
1133
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1132
|
-
checksum = "
|
|
1134
|
+
checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458"
|
|
1133
1135
|
dependencies = [
|
|
1134
1136
|
"futures-core",
|
|
1135
1137
|
"futures-task",
|
|
@@ -1138,15 +1140,15 @@ dependencies = [
|
|
|
1138
1140
|
|
|
1139
1141
|
[[package]]
|
|
1140
1142
|
name = "futures-io"
|
|
1141
|
-
version = "0.3.
|
|
1143
|
+
version = "0.3.33"
|
|
1142
1144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1143
|
-
checksum = "
|
|
1145
|
+
checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a"
|
|
1144
1146
|
|
|
1145
1147
|
[[package]]
|
|
1146
1148
|
name = "futures-macro"
|
|
1147
|
-
version = "0.3.
|
|
1149
|
+
version = "0.3.33"
|
|
1148
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
-
checksum = "
|
|
1151
|
+
checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b"
|
|
1150
1152
|
dependencies = [
|
|
1151
1153
|
"proc-macro2",
|
|
1152
1154
|
"quote",
|
|
@@ -1155,21 +1157,21 @@ dependencies = [
|
|
|
1155
1157
|
|
|
1156
1158
|
[[package]]
|
|
1157
1159
|
name = "futures-sink"
|
|
1158
|
-
version = "0.3.
|
|
1160
|
+
version = "0.3.33"
|
|
1159
1161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
-
checksum = "
|
|
1162
|
+
checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307"
|
|
1161
1163
|
|
|
1162
1164
|
[[package]]
|
|
1163
1165
|
name = "futures-task"
|
|
1164
|
-
version = "0.3.
|
|
1166
|
+
version = "0.3.33"
|
|
1165
1167
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
-
checksum = "
|
|
1168
|
+
checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
|
|
1167
1169
|
|
|
1168
1170
|
[[package]]
|
|
1169
1171
|
name = "futures-util"
|
|
1170
|
-
version = "0.3.
|
|
1172
|
+
version = "0.3.33"
|
|
1171
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
-
checksum = "
|
|
1174
|
+
checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
|
|
1173
1175
|
dependencies = [
|
|
1174
1176
|
"futures-channel",
|
|
1175
1177
|
"futures-core",
|
|
@@ -1498,7 +1500,7 @@ dependencies = [
|
|
|
1498
1500
|
"tokio",
|
|
1499
1501
|
"tokio-rustls",
|
|
1500
1502
|
"tower-service",
|
|
1501
|
-
"webpki-roots 1.0.
|
|
1503
|
+
"webpki-roots 1.0.9",
|
|
1502
1504
|
]
|
|
1503
1505
|
|
|
1504
1506
|
[[package]]
|
|
@@ -2286,9 +2288,9 @@ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
|
2286
2288
|
|
|
2287
2289
|
[[package]]
|
|
2288
2290
|
name = "portable-atomic"
|
|
2289
|
-
version = "1.
|
|
2291
|
+
version = "1.14.0"
|
|
2290
2292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
-
checksum = "
|
|
2293
|
+
checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
|
|
2292
2294
|
|
|
2293
2295
|
[[package]]
|
|
2294
2296
|
name = "postgres-protocol"
|
|
@@ -2380,9 +2382,9 @@ dependencies = [
|
|
|
2380
2382
|
|
|
2381
2383
|
[[package]]
|
|
2382
2384
|
name = "proc-macro2"
|
|
2383
|
-
version = "1.0.
|
|
2385
|
+
version = "1.0.107"
|
|
2384
2386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
-
checksum = "
|
|
2387
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
2386
2388
|
dependencies = [
|
|
2387
2389
|
"unicode-ident",
|
|
2388
2390
|
]
|
|
@@ -2504,15 +2506,15 @@ dependencies = [
|
|
|
2504
2506
|
|
|
2505
2507
|
[[package]]
|
|
2506
2508
|
name = "quickhouse-core"
|
|
2507
|
-
version = "0.2.
|
|
2509
|
+
version = "0.2.4"
|
|
2508
2510
|
dependencies = [
|
|
2509
2511
|
"anyhow",
|
|
2510
2512
|
"arrow",
|
|
2511
2513
|
"arrow-array",
|
|
2512
2514
|
"arrow-schema",
|
|
2515
|
+
"async-compression",
|
|
2513
2516
|
"bytes",
|
|
2514
2517
|
"chrono",
|
|
2515
|
-
"flate2",
|
|
2516
2518
|
"futures",
|
|
2517
2519
|
"google-cloud-bigquery",
|
|
2518
2520
|
"google-cloud-googleapis",
|
|
@@ -2527,13 +2529,14 @@ dependencies = [
|
|
|
2527
2529
|
"tokio",
|
|
2528
2530
|
"tokio-postgres",
|
|
2529
2531
|
"tokio-postgres-rustls",
|
|
2532
|
+
"tokio-util",
|
|
2530
2533
|
"tracing",
|
|
2531
2534
|
"webpki-roots 0.26.11",
|
|
2532
2535
|
]
|
|
2533
2536
|
|
|
2534
2537
|
[[package]]
|
|
2535
2538
|
name = "quickhouse-py"
|
|
2536
|
-
version = "0.2.
|
|
2539
|
+
version = "0.2.4"
|
|
2537
2540
|
dependencies = [
|
|
2538
2541
|
"pyo3",
|
|
2539
2542
|
"quickhouse-core",
|
|
@@ -2554,7 +2557,7 @@ dependencies = [
|
|
|
2554
2557
|
"rustc-hash",
|
|
2555
2558
|
"rustls",
|
|
2556
2559
|
"socket2 0.6.5",
|
|
2557
|
-
"thiserror 2.0.
|
|
2560
|
+
"thiserror 2.0.19",
|
|
2558
2561
|
"tokio",
|
|
2559
2562
|
"tracing",
|
|
2560
2563
|
"web-time",
|
|
@@ -2576,7 +2579,7 @@ dependencies = [
|
|
|
2576
2579
|
"rustls",
|
|
2577
2580
|
"rustls-pki-types",
|
|
2578
2581
|
"slab",
|
|
2579
|
-
"thiserror 2.0.
|
|
2582
|
+
"thiserror 2.0.19",
|
|
2580
2583
|
"tinyvec",
|
|
2581
2584
|
"tracing",
|
|
2582
2585
|
"web-time",
|
|
@@ -2598,9 +2601,9 @@ dependencies = [
|
|
|
2598
2601
|
|
|
2599
2602
|
[[package]]
|
|
2600
2603
|
name = "quote"
|
|
2601
|
-
version = "1.0.
|
|
2604
|
+
version = "1.0.47"
|
|
2602
2605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
-
checksum = "
|
|
2606
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
2604
2607
|
dependencies = [
|
|
2605
2608
|
"proc-macro2",
|
|
2606
2609
|
]
|
|
@@ -2767,7 +2770,7 @@ dependencies = [
|
|
|
2767
2770
|
"wasm-bindgen-futures",
|
|
2768
2771
|
"wasm-streams",
|
|
2769
2772
|
"web-sys",
|
|
2770
|
-
"webpki-roots 1.0.
|
|
2773
|
+
"webpki-roots 1.0.9",
|
|
2771
2774
|
]
|
|
2772
2775
|
|
|
2773
2776
|
[[package]]
|
|
@@ -2945,9 +2948,9 @@ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
|
2945
2948
|
|
|
2946
2949
|
[[package]]
|
|
2947
2950
|
name = "serde"
|
|
2948
|
-
version = "1.0.
|
|
2951
|
+
version = "1.0.229"
|
|
2949
2952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
-
checksum = "
|
|
2953
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
2951
2954
|
dependencies = [
|
|
2952
2955
|
"serde_core",
|
|
2953
2956
|
"serde_derive",
|
|
@@ -2955,22 +2958,22 @@ dependencies = [
|
|
|
2955
2958
|
|
|
2956
2959
|
[[package]]
|
|
2957
2960
|
name = "serde_core"
|
|
2958
|
-
version = "1.0.
|
|
2961
|
+
version = "1.0.229"
|
|
2959
2962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2960
|
-
checksum = "
|
|
2963
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
2961
2964
|
dependencies = [
|
|
2962
2965
|
"serde_derive",
|
|
2963
2966
|
]
|
|
2964
2967
|
|
|
2965
2968
|
[[package]]
|
|
2966
2969
|
name = "serde_derive"
|
|
2967
|
-
version = "1.0.
|
|
2970
|
+
version = "1.0.229"
|
|
2968
2971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2969
|
-
checksum = "
|
|
2972
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
2970
2973
|
dependencies = [
|
|
2971
2974
|
"proc-macro2",
|
|
2972
2975
|
"quote",
|
|
2973
|
-
"syn
|
|
2976
|
+
"syn 3.0.1",
|
|
2974
2977
|
]
|
|
2975
2978
|
|
|
2976
2979
|
[[package]]
|
|
@@ -3072,7 +3075,7 @@ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
|
|
|
3072
3075
|
dependencies = [
|
|
3073
3076
|
"num-bigint",
|
|
3074
3077
|
"num-traits",
|
|
3075
|
-
"thiserror 2.0.
|
|
3078
|
+
"thiserror 2.0.19",
|
|
3076
3079
|
"time",
|
|
3077
3080
|
]
|
|
3078
3081
|
|
|
@@ -3191,6 +3194,17 @@ dependencies = [
|
|
|
3191
3194
|
"unicode-ident",
|
|
3192
3195
|
]
|
|
3193
3196
|
|
|
3197
|
+
[[package]]
|
|
3198
|
+
name = "syn"
|
|
3199
|
+
version = "3.0.1"
|
|
3200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3201
|
+
checksum = "5edbec4ed188954a10c12c038215f8ce7606b2d5c973cd8dc43e8795065c5f2f"
|
|
3202
|
+
dependencies = [
|
|
3203
|
+
"proc-macro2",
|
|
3204
|
+
"quote",
|
|
3205
|
+
"unicode-ident",
|
|
3206
|
+
]
|
|
3207
|
+
|
|
3194
3208
|
[[package]]
|
|
3195
3209
|
name = "sync_wrapper"
|
|
3196
3210
|
version = "1.0.2"
|
|
@@ -3243,11 +3257,11 @@ dependencies = [
|
|
|
3243
3257
|
|
|
3244
3258
|
[[package]]
|
|
3245
3259
|
name = "thiserror"
|
|
3246
|
-
version = "2.0.
|
|
3260
|
+
version = "2.0.19"
|
|
3247
3261
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
|
-
checksum = "
|
|
3262
|
+
checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
|
|
3249
3263
|
dependencies = [
|
|
3250
|
-
"thiserror-impl 2.0.
|
|
3264
|
+
"thiserror-impl 2.0.19",
|
|
3251
3265
|
]
|
|
3252
3266
|
|
|
3253
3267
|
[[package]]
|
|
@@ -3263,13 +3277,13 @@ dependencies = [
|
|
|
3263
3277
|
|
|
3264
3278
|
[[package]]
|
|
3265
3279
|
name = "thiserror-impl"
|
|
3266
|
-
version = "2.0.
|
|
3280
|
+
version = "2.0.19"
|
|
3267
3281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
-
checksum = "
|
|
3282
|
+
checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
|
|
3269
3283
|
dependencies = [
|
|
3270
3284
|
"proc-macro2",
|
|
3271
3285
|
"quote",
|
|
3272
|
-
"syn
|
|
3286
|
+
"syn 3.0.1",
|
|
3273
3287
|
]
|
|
3274
3288
|
|
|
3275
3289
|
[[package]]
|
|
@@ -3368,9 +3382,9 @@ dependencies = [
|
|
|
3368
3382
|
|
|
3369
3383
|
[[package]]
|
|
3370
3384
|
name = "tokio"
|
|
3371
|
-
version = "1.
|
|
3385
|
+
version = "1.53.0"
|
|
3372
3386
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
-
checksum = "
|
|
3387
|
+
checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
|
|
3374
3388
|
dependencies = [
|
|
3375
3389
|
"bytes",
|
|
3376
3390
|
"libc",
|
|
@@ -3384,9 +3398,9 @@ dependencies = [
|
|
|
3384
3398
|
|
|
3385
3399
|
[[package]]
|
|
3386
3400
|
name = "tokio-macros"
|
|
3387
|
-
version = "2.7.
|
|
3401
|
+
version = "2.7.1"
|
|
3388
3402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
-
checksum = "
|
|
3403
|
+
checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba"
|
|
3390
3404
|
dependencies = [
|
|
3391
3405
|
"proc-macro2",
|
|
3392
3406
|
"quote",
|
|
@@ -3931,14 +3945,14 @@ version = "0.26.11"
|
|
|
3931
3945
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
3946
|
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
3933
3947
|
dependencies = [
|
|
3934
|
-
"webpki-roots 1.0.
|
|
3948
|
+
"webpki-roots 1.0.9",
|
|
3935
3949
|
]
|
|
3936
3950
|
|
|
3937
3951
|
[[package]]
|
|
3938
3952
|
name = "webpki-roots"
|
|
3939
|
-
version = "1.0.
|
|
3953
|
+
version = "1.0.9"
|
|
3940
3954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
-
checksum = "
|
|
3955
|
+
checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a"
|
|
3942
3956
|
dependencies = [
|
|
3943
3957
|
"rustls-pki-types",
|
|
3944
3958
|
]
|
|
@@ -3,7 +3,7 @@ resolver = "2"
|
|
|
3
3
|
members = ["crates/quickhouse-core", "crates/quickhouse-py"]
|
|
4
4
|
|
|
5
5
|
[workspace.package]
|
|
6
|
-
version = "0.2.
|
|
6
|
+
version = "0.2.4"
|
|
7
7
|
edition = "2021"
|
|
8
8
|
license = "MIT"
|
|
9
9
|
authors = ["quickhouse contributors"]
|
|
@@ -19,6 +19,8 @@ arrow-array = "53"
|
|
|
19
19
|
arrow-schema = "53"
|
|
20
20
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "stream", "gzip"] }
|
|
21
21
|
bytes = "1"
|
|
22
|
+
tokio-util = { version = "0.7", features = ["io"] }
|
|
23
|
+
async-compression = { version = "0.4", features = ["tokio", "gzip", "zstd"] }
|
|
22
24
|
thiserror = "1"
|
|
23
25
|
anyhow = "1"
|
|
24
26
|
tracing = "0.1"
|
|
@@ -27,7 +29,6 @@ serde = { version = "1", features = ["derive"] }
|
|
|
27
29
|
serde_json = "1"
|
|
28
30
|
chrono = { version = "0.4", default-features = false, features = ["std"] }
|
|
29
31
|
uuid = { version = "1", features = ["v4"] }
|
|
30
|
-
flate2 = "1"
|
|
31
32
|
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
|
|
32
33
|
tokio-postgres-rustls = "0.13"
|
|
33
34
|
webpki-roots = "0.26"
|