quickhouse 0.3.0__tar.gz → 0.3.2__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.
Files changed (37) hide show
  1. {quickhouse-0.3.0 → quickhouse-0.3.2}/Cargo.lock +275 -32
  2. {quickhouse-0.3.0 → quickhouse-0.3.2}/Cargo.toml +24 -1
  3. quickhouse-0.3.2/PKG-INFO +261 -0
  4. quickhouse-0.3.2/README.md +228 -0
  5. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/Cargo.toml +5 -0
  6. quickhouse-0.3.2/crates/quickhouse-core/src/archive.rs +178 -0
  7. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/config.rs +55 -0
  8. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/ddl.rs +18 -2
  9. quickhouse-0.3.2/crates/quickhouse-core/src/decimal.rs +225 -0
  10. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/decode.rs +229 -19
  11. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/decode_bigquery.rs +152 -21
  12. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/decode_mysql.rs +129 -29
  13. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/lib.rs +5 -2
  14. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/sink/bigquery.rs +330 -55
  15. quickhouse-0.3.2/crates/quickhouse-core/src/sink/bigquery_proto.rs +388 -0
  16. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/sink/clickhouse.rs +36 -5
  17. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/sink/mod.rs +6 -4
  18. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/source/bigquery.rs +2 -1
  19. quickhouse-0.3.2/crates/quickhouse-core/src/source/mod.rs +78 -0
  20. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/source/mysql.rs +23 -20
  21. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/source/postgres.rs +20 -23
  22. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/sync.rs +253 -35
  23. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/transform.rs +122 -6
  24. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/types.rs +35 -10
  25. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-py/src/lib.rs +132 -12
  26. {quickhouse-0.3.0 → quickhouse-0.3.2}/pyproject.toml +5 -2
  27. {quickhouse-0.3.0 → quickhouse-0.3.2}/python/quickhouse/__init__.py +2 -0
  28. {quickhouse-0.3.0 → quickhouse-0.3.2}/python/quickhouse/_quickhouse.pyi +72 -10
  29. quickhouse-0.3.0/PKG-INFO +0 -398
  30. quickhouse-0.3.0/README.md +0 -367
  31. quickhouse-0.3.0/crates/quickhouse-core/src/source/mod.rs +0 -15
  32. {quickhouse-0.3.0 → quickhouse-0.3.2}/LICENSE +0 -0
  33. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/error.rs +0 -0
  34. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-core/src/memory.rs +0 -0
  35. {quickhouse-0.3.0 → quickhouse-0.3.2}/crates/quickhouse-py/Cargo.toml +0 -0
  36. {quickhouse-0.3.0 → quickhouse-0.3.2}/python/quickhouse/progress.py +0 -0
  37. {quickhouse-0.3.0 → quickhouse-0.3.2}/python/quickhouse/py.typed +0 -0
@@ -331,7 +331,7 @@ checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec"
331
331
  dependencies = [
332
332
  "proc-macro2",
333
333
  "quote",
334
- "syn 3.0.2",
334
+ "syn 3.0.3",
335
335
  ]
336
336
 
337
337
  [[package]]
@@ -606,6 +606,7 @@ dependencies = [
606
606
  "android-tzdata",
607
607
  "iana-time-zone",
608
608
  "num-traits",
609
+ "serde",
609
610
  "windows-targets",
610
611
  ]
611
612
 
@@ -686,6 +687,16 @@ dependencies = [
686
687
  "tiny-keccak",
687
688
  ]
688
689
 
690
+ [[package]]
691
+ name = "core-foundation"
692
+ version = "0.10.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
695
+ dependencies = [
696
+ "core-foundation-sys",
697
+ "libc",
698
+ ]
699
+
689
700
  [[package]]
690
701
  name = "core-foundation-sys"
691
702
  version = "0.8.7"
@@ -1235,9 +1246,9 @@ dependencies = [
1235
1246
 
1236
1247
  [[package]]
1237
1248
  name = "glob"
1238
- version = "0.3.3"
1249
+ version = "0.3.4"
1239
1250
  source = "registry+https://github.com/rust-lang/crates.io-index"
1240
- checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1251
+ checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
1241
1252
 
1242
1253
  [[package]]
1243
1254
  name = "google-cloud-auth"
@@ -1457,6 +1468,12 @@ version = "1.10.1"
1457
1468
  source = "registry+https://github.com/rust-lang/crates.io-index"
1458
1469
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1459
1470
 
1471
+ [[package]]
1472
+ name = "humantime"
1473
+ version = "2.4.0"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
1476
+
1460
1477
  [[package]]
1461
1478
  name = "hybrid-array"
1462
1479
  version = "0.4.13"
@@ -1468,9 +1485,9 @@ dependencies = [
1468
1485
 
1469
1486
  [[package]]
1470
1487
  name = "hyper"
1471
- version = "1.10.1"
1488
+ version = "1.11.0"
1472
1489
  source = "registry+https://github.com/rust-lang/crates.io-index"
1473
- checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
1490
+ checksum = "d22053281f852e11534f5198498373cbb59295120a20771d90f7ed1897490a72"
1474
1491
  dependencies = [
1475
1492
  "atomic-waker",
1476
1493
  "bytes",
@@ -1497,6 +1514,7 @@ dependencies = [
1497
1514
  "hyper",
1498
1515
  "hyper-util",
1499
1516
  "rustls",
1517
+ "rustls-native-certs",
1500
1518
  "tokio",
1501
1519
  "tokio-rustls",
1502
1520
  "tower-service",
@@ -1701,6 +1719,12 @@ dependencies = [
1701
1719
  "rustversion",
1702
1720
  ]
1703
1721
 
1722
+ [[package]]
1723
+ name = "integer-encoding"
1724
+ version = "3.0.4"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
1727
+
1704
1728
  [[package]]
1705
1729
  name = "ipnet"
1706
1730
  version = "2.12.0"
@@ -1841,9 +1865,9 @@ dependencies = [
1841
1865
 
1842
1866
  [[package]]
1843
1867
  name = "libc"
1844
- version = "0.2.186"
1868
+ version = "0.2.189"
1845
1869
  source = "registry+https://github.com/rust-lang/crates.io-index"
1846
- checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1870
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
1847
1871
 
1848
1872
  [[package]]
1849
1873
  name = "libloading"
@@ -1915,6 +1939,16 @@ dependencies = [
1915
1939
  "regex-automata",
1916
1940
  ]
1917
1941
 
1942
+ [[package]]
1943
+ name = "md-5"
1944
+ version = "0.10.6"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1947
+ dependencies = [
1948
+ "cfg-if",
1949
+ "digest 0.10.7",
1950
+ ]
1951
+
1918
1952
  [[package]]
1919
1953
  name = "md-5"
1920
1954
  version = "0.11.0"
@@ -2190,12 +2224,57 @@ dependencies = [
2190
2224
  "objc2-core-foundation",
2191
2225
  ]
2192
2226
 
2227
+ [[package]]
2228
+ name = "object_store"
2229
+ version = "0.11.2"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf"
2232
+ dependencies = [
2233
+ "async-trait",
2234
+ "base64 0.22.1",
2235
+ "bytes",
2236
+ "chrono",
2237
+ "futures",
2238
+ "humantime",
2239
+ "hyper",
2240
+ "itertools 0.13.0",
2241
+ "md-5 0.10.6",
2242
+ "parking_lot",
2243
+ "percent-encoding",
2244
+ "quick-xml",
2245
+ "rand 0.8.7",
2246
+ "reqwest",
2247
+ "ring",
2248
+ "serde",
2249
+ "serde_json",
2250
+ "snafu",
2251
+ "tokio",
2252
+ "tracing",
2253
+ "url",
2254
+ "walkdir",
2255
+ ]
2256
+
2193
2257
  [[package]]
2194
2258
  name = "once_cell"
2195
2259
  version = "1.21.4"
2196
2260
  source = "registry+https://github.com/rust-lang/crates.io-index"
2197
2261
  checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
2198
2262
 
2263
+ [[package]]
2264
+ name = "openssl-probe"
2265
+ version = "0.2.1"
2266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2267
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
2268
+
2269
+ [[package]]
2270
+ name = "ordered-float"
2271
+ version = "2.10.1"
2272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2273
+ checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
2274
+ dependencies = [
2275
+ "num-traits",
2276
+ ]
2277
+
2199
2278
  [[package]]
2200
2279
  name = "parking_lot"
2201
2280
  version = "0.12.5"
@@ -2219,6 +2298,45 @@ dependencies = [
2219
2298
  "windows-link",
2220
2299
  ]
2221
2300
 
2301
+ [[package]]
2302
+ name = "parquet"
2303
+ version = "53.4.1"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "2f8cf58b29782a7add991f655ff42929e31a7859f5319e53db9e39a714cb113c"
2306
+ dependencies = [
2307
+ "ahash 0.8.12",
2308
+ "arrow-array",
2309
+ "arrow-buffer",
2310
+ "arrow-cast",
2311
+ "arrow-data",
2312
+ "arrow-ipc",
2313
+ "arrow-schema",
2314
+ "arrow-select",
2315
+ "base64 0.22.1",
2316
+ "bytes",
2317
+ "chrono",
2318
+ "futures",
2319
+ "half",
2320
+ "hashbrown 0.15.5",
2321
+ "num",
2322
+ "num-bigint",
2323
+ "object_store",
2324
+ "paste",
2325
+ "seq-macro",
2326
+ "snap",
2327
+ "thrift",
2328
+ "tokio",
2329
+ "twox-hash",
2330
+ "zstd",
2331
+ "zstd-sys",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "paste"
2336
+ version = "1.0.15"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2339
+
2222
2340
  [[package]]
2223
2341
  name = "pem"
2224
2342
  version = "3.0.6"
@@ -2303,7 +2421,7 @@ dependencies = [
2303
2421
  "bytes",
2304
2422
  "fallible-iterator",
2305
2423
  "hmac",
2306
- "md-5",
2424
+ "md-5 0.11.0",
2307
2425
  "memchr",
2308
2426
  "rand 0.10.2",
2309
2427
  "sha2 0.11.0",
@@ -2504,9 +2622,19 @@ dependencies = [
2504
2622
  "syn 2.0.119",
2505
2623
  ]
2506
2624
 
2625
+ [[package]]
2626
+ name = "quick-xml"
2627
+ version = "0.37.5"
2628
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2629
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
2630
+ dependencies = [
2631
+ "memchr",
2632
+ "serde",
2633
+ ]
2634
+
2507
2635
  [[package]]
2508
2636
  name = "quickhouse-core"
2509
- version = "0.3.0"
2637
+ version = "0.3.2"
2510
2638
  dependencies = [
2511
2639
  "anyhow",
2512
2640
  "arrow",
@@ -2518,8 +2646,13 @@ dependencies = [
2518
2646
  "chrono",
2519
2647
  "futures",
2520
2648
  "google-cloud-bigquery",
2649
+ "google-cloud-gax",
2521
2650
  "google-cloud-googleapis",
2522
2651
  "mysql_async",
2652
+ "object_store",
2653
+ "parquet",
2654
+ "prost",
2655
+ "prost-types",
2523
2656
  "reqwest",
2524
2657
  "rustls",
2525
2658
  "rustls-pemfile",
@@ -2537,7 +2670,7 @@ dependencies = [
2537
2670
 
2538
2671
  [[package]]
2539
2672
  name = "quickhouse-py"
2540
- version = "0.3.0"
2673
+ version = "0.3.2"
2541
2674
  dependencies = [
2542
2675
  "pyo3",
2543
2676
  "quickhouse-core",
@@ -2741,6 +2874,7 @@ dependencies = [
2741
2874
  "encoding_rs",
2742
2875
  "futures-core",
2743
2876
  "futures-util",
2877
+ "h2",
2744
2878
  "http",
2745
2879
  "http-body",
2746
2880
  "http-body-util",
@@ -2755,6 +2889,7 @@ dependencies = [
2755
2889
  "pin-project-lite",
2756
2890
  "quinn",
2757
2891
  "rustls",
2892
+ "rustls-native-certs",
2758
2893
  "rustls-pki-types",
2759
2894
  "serde",
2760
2895
  "serde_json",
@@ -2880,6 +3015,18 @@ dependencies = [
2880
3015
  "zeroize",
2881
3016
  ]
2882
3017
 
3018
+ [[package]]
3019
+ name = "rustls-native-certs"
3020
+ version = "0.8.4"
3021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3022
+ checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
3023
+ dependencies = [
3024
+ "openssl-probe",
3025
+ "rustls-pki-types",
3026
+ "schannel",
3027
+ "security-framework",
3028
+ ]
3029
+
2883
3030
  [[package]]
2884
3031
  name = "rustls-pemfile"
2885
3032
  version = "2.2.0"
@@ -2923,12 +3070,30 @@ version = "1.0.23"
2923
3070
  source = "registry+https://github.com/rust-lang/crates.io-index"
2924
3071
  checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2925
3072
 
3073
+ [[package]]
3074
+ name = "same-file"
3075
+ version = "1.0.6"
3076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3077
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3078
+ dependencies = [
3079
+ "winapi-util",
3080
+ ]
3081
+
2926
3082
  [[package]]
2927
3083
  name = "saturating"
2928
3084
  version = "0.1.0"
2929
3085
  source = "registry+https://github.com/rust-lang/crates.io-index"
2930
3086
  checksum = "ece8e78b2f38ec51c51f5d475df0a7187ba5111b2a28bdc761ee05b075d40a71"
2931
3087
 
3088
+ [[package]]
3089
+ name = "schannel"
3090
+ version = "0.1.29"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
3093
+ dependencies = [
3094
+ "windows-sys 0.61.2",
3095
+ ]
3096
+
2932
3097
  [[package]]
2933
3098
  name = "scopeguard"
2934
3099
  version = "1.2.0"
@@ -2941,12 +3106,41 @@ version = "4.1.0"
2941
3106
  source = "registry+https://github.com/rust-lang/crates.io-index"
2942
3107
  checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
2943
3108
 
3109
+ [[package]]
3110
+ name = "security-framework"
3111
+ version = "3.7.0"
3112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3113
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
3114
+ dependencies = [
3115
+ "bitflags 2.13.1",
3116
+ "core-foundation",
3117
+ "core-foundation-sys",
3118
+ "libc",
3119
+ "security-framework-sys",
3120
+ ]
3121
+
3122
+ [[package]]
3123
+ name = "security-framework-sys"
3124
+ version = "2.17.0"
3125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3126
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
3127
+ dependencies = [
3128
+ "core-foundation-sys",
3129
+ "libc",
3130
+ ]
3131
+
2944
3132
  [[package]]
2945
3133
  name = "semver"
2946
3134
  version = "1.0.28"
2947
3135
  source = "registry+https://github.com/rust-lang/crates.io-index"
2948
3136
  checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2949
3137
 
3138
+ [[package]]
3139
+ name = "seq-macro"
3140
+ version = "0.3.6"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
3143
+
2950
3144
  [[package]]
2951
3145
  name = "serde"
2952
3146
  version = "1.0.229"
@@ -2974,7 +3168,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
2974
3168
  dependencies = [
2975
3169
  "proc-macro2",
2976
3170
  "quote",
2977
- "syn 3.0.2",
3171
+ "syn 3.0.3",
2978
3172
  ]
2979
3173
 
2980
3174
  [[package]]
@@ -3098,6 +3292,33 @@ version = "1.15.2"
3098
3292
  source = "registry+https://github.com/rust-lang/crates.io-index"
3099
3293
  checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
3100
3294
 
3295
+ [[package]]
3296
+ name = "snafu"
3297
+ version = "0.8.9"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2"
3300
+ dependencies = [
3301
+ "snafu-derive",
3302
+ ]
3303
+
3304
+ [[package]]
3305
+ name = "snafu-derive"
3306
+ version = "0.8.9"
3307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3308
+ checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451"
3309
+ dependencies = [
3310
+ "heck",
3311
+ "proc-macro2",
3312
+ "quote",
3313
+ "syn 2.0.119",
3314
+ ]
3315
+
3316
+ [[package]]
3317
+ name = "snap"
3318
+ version = "1.1.2"
3319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3320
+ checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886"
3321
+
3101
3322
  [[package]]
3102
3323
  name = "socket2"
3103
3324
  version = "0.5.10"
@@ -3197,9 +3418,9 @@ dependencies = [
3197
3418
 
3198
3419
  [[package]]
3199
3420
  name = "syn"
3200
- version = "3.0.2"
3421
+ version = "3.0.3"
3201
3422
  source = "registry+https://github.com/rust-lang/crates.io-index"
3202
- checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3"
3423
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
3203
3424
  dependencies = [
3204
3425
  "proc-macro2",
3205
3426
  "quote",
@@ -3284,7 +3505,7 @@ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
3284
3505
  dependencies = [
3285
3506
  "proc-macro2",
3286
3507
  "quote",
3287
- "syn 3.0.2",
3508
+ "syn 3.0.3",
3288
3509
  ]
3289
3510
 
3290
3511
  [[package]]
@@ -3296,11 +3517,22 @@ dependencies = [
3296
3517
  "cfg-if",
3297
3518
  ]
3298
3519
 
3520
+ [[package]]
3521
+ name = "thrift"
3522
+ version = "0.17.0"
3523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3524
+ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
3525
+ dependencies = [
3526
+ "byteorder",
3527
+ "integer-encoding",
3528
+ "ordered-float",
3529
+ ]
3530
+
3299
3531
  [[package]]
3300
3532
  name = "time"
3301
- version = "0.3.53"
3533
+ version = "0.3.54"
3302
3534
  source = "registry+https://github.com/rust-lang/crates.io-index"
3303
- checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
3535
+ checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244"
3304
3536
  dependencies = [
3305
3537
  "deranged",
3306
3538
  "num-conv",
@@ -3318,9 +3550,9 @@ checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
3318
3550
 
3319
3551
  [[package]]
3320
3552
  name = "time-macros"
3321
- version = "0.2.31"
3553
+ version = "0.2.32"
3322
3554
  source = "registry+https://github.com/rust-lang/crates.io-index"
3323
- checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
3555
+ checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85"
3324
3556
  dependencies = [
3325
3557
  "num-conv",
3326
3558
  "time-core",
@@ -3383,9 +3615,9 @@ dependencies = [
3383
3615
 
3384
3616
  [[package]]
3385
3617
  name = "tokio"
3386
- version = "1.53.0"
3618
+ version = "1.53.1"
3387
3619
  source = "registry+https://github.com/rust-lang/crates.io-index"
3388
- checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee"
3620
+ checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed"
3389
3621
  dependencies = [
3390
3622
  "bytes",
3391
3623
  "libc",
@@ -3471,9 +3703,9 @@ dependencies = [
3471
3703
 
3472
3704
  [[package]]
3473
3705
  name = "tokio-stream"
3474
- version = "0.1.18"
3706
+ version = "0.1.19"
3475
3707
  source = "registry+https://github.com/rust-lang/crates.io-index"
3476
- checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3708
+ checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b"
3477
3709
  dependencies = [
3478
3710
  "futures-core",
3479
3711
  "pin-project-lite",
@@ -3482,13 +3714,14 @@ dependencies = [
3482
3714
 
3483
3715
  [[package]]
3484
3716
  name = "tokio-util"
3485
- version = "0.7.18"
3717
+ version = "0.7.19"
3486
3718
  source = "registry+https://github.com/rust-lang/crates.io-index"
3487
- checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3719
+ checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52"
3488
3720
  dependencies = [
3489
3721
  "bytes",
3490
3722
  "futures-core",
3491
3723
  "futures-sink",
3724
+ "libc",
3492
3725
  "pin-project-lite",
3493
3726
  "tokio",
3494
3727
  ]
@@ -3799,6 +4032,16 @@ version = "0.9.5"
3799
4032
  source = "registry+https://github.com/rust-lang/crates.io-index"
3800
4033
  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3801
4034
 
4035
+ [[package]]
4036
+ name = "walkdir"
4037
+ version = "2.5.0"
4038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4039
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4040
+ dependencies = [
4041
+ "same-file",
4042
+ "winapi-util",
4043
+ ]
4044
+
3802
4045
  [[package]]
3803
4046
  name = "want"
3804
4047
  version = "0.3.1"
@@ -4210,18 +4453,18 @@ dependencies = [
4210
4453
 
4211
4454
  [[package]]
4212
4455
  name = "zerocopy"
4213
- version = "0.8.54"
4456
+ version = "0.8.55"
4214
4457
  source = "registry+https://github.com/rust-lang/crates.io-index"
4215
- checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
4458
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
4216
4459
  dependencies = [
4217
4460
  "zerocopy-derive",
4218
4461
  ]
4219
4462
 
4220
4463
  [[package]]
4221
4464
  name = "zerocopy-derive"
4222
- version = "0.8.54"
4465
+ version = "0.8.55"
4223
4466
  source = "registry+https://github.com/rust-lang/crates.io-index"
4224
- checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
4467
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
4225
4468
  dependencies = [
4226
4469
  "proc-macro2",
4227
4470
  "quote",
@@ -4319,18 +4562,18 @@ dependencies = [
4319
4562
 
4320
4563
  [[package]]
4321
4564
  name = "zstd-safe"
4322
- version = "7.2.4"
4565
+ version = "7.2.1"
4323
4566
  source = "registry+https://github.com/rust-lang/crates.io-index"
4324
- checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
4567
+ checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
4325
4568
  dependencies = [
4326
4569
  "zstd-sys",
4327
4570
  ]
4328
4571
 
4329
4572
  [[package]]
4330
4573
  name = "zstd-sys"
4331
- version = "2.0.16+zstd.1.5.7"
4574
+ version = "2.0.13+zstd.1.5.6"
4332
4575
  source = "registry+https://github.com/rust-lang/crates.io-index"
4333
- checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
4576
+ checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
4334
4577
  dependencies = [
4335
4578
  "cc",
4336
4579
  "pkg-config",
@@ -3,7 +3,7 @@ resolver = "2"
3
3
  members = ["crates/quickhouse-core", "crates/quickhouse-py"]
4
4
 
5
5
  [workspace.package]
6
- version = "0.3.0"
6
+ version = "0.3.2"
7
7
  edition = "2021"
8
8
  license = "MIT"
9
9
  authors = ["quickhouse contributors"]
@@ -38,10 +38,33 @@ mysql_async = { version = "0.34", default-features = false, features = ["default
38
38
  # that entirely, matching the rest of this workspace's pure-rustls stack.
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
+ # gRPC transport types (Status/Code) for the Storage Write API error handling.
42
+ google-cloud-gax = "0.19"
41
43
  time = { version = "0.3", features = ["macros"] }
42
44
  # Only used to encode Binary columns as BigQuery's BYTES JSON representation
43
45
  # (base64 text) for the insertAll destination path.
44
46
  base64 = "0.22"
47
+ # For the opt-in BigQuery Storage Write API path: prost-types provides the
48
+ # runtime protobuf `DescriptorProto`/`FieldDescriptorProto` we build from the
49
+ # Arrow schema; prost is used in tests to decode our hand-encoded rows and
50
+ # verify the wire format. Pinned to the versions the bigquery crate resolves.
51
+ prost = "0.13"
52
+ prost-types = "0.13"
53
+ # For the opt-in S3 data-lake archival path (ClickHouse destination only):
54
+ # pinned to the exact arrow 53.x release line so `RecordBatch`es already
55
+ # flowing through this crate's decoders pass straight into the Parquet
56
+ # writer with zero conversion — a newer `parquet` would pull in a second,
57
+ # incompatible `arrow-array` version (verified via `cargo tree`).
58
+ parquet = { version = "53", default-features = false, features = ["arrow", "async", "object_store", "zstd", "snap"] }
59
+ # Pinned to exactly the version `parquet` 53.4.0 itself depends on
60
+ # (object_store = "0.11.0") — a newer object_store would resolve as a SECOND,
61
+ # incompatible copy in the dependency graph (verified: this crate's own
62
+ # `ObjectStore`/`Path` types wouldn't type-check against parquet's).
63
+ # `aws` feature builds on reqwest/rustls (not native-tls), matching this
64
+ # workspace's pure-rustls stack; it also pulls in `aws-lc-rs` as a rustls
65
+ # crypto backend, but the process-wide `ring` install in sync.rs already
66
+ # handles exactly this "another dependency's rustls backend" scenario.
67
+ object_store = { version = "=0.11.2", default-features = false, features = ["aws"] }
45
68
 
46
69
  # Faster release builds for the shipped wheel.
47
70
  [profile.release]