red-adbc 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +330 -32
- data/lib/adbc/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 226ac26815e9b432a7911823b7077425ed394a5aa977032181e3861337cc4bab
|
4
|
+
data.tar.gz: 0d78a10041e9a04db31e88d429eb9702f56b12dc5b210dab3af0c388ae970c0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5afc228e56dea3a855f4f794593d2fa1246172c3bf0f22d43a5216c44f2fe6978e0b8f4f24b9da4eba4a43ab9b92a3dfdff5dd1523308bba92896884889ba9d
|
7
|
+
data.tar.gz: 990d290e6332d094e5df253b5ea21d98319b7a6dd1941586e202de54ff2fdcfb9c404f272d23568883cb4c12bb96a34a97f165195a66637e2a2fee409d3d44bb
|
data/LICENSE.txt
CHANGED
@@ -309,6 +309,7 @@ https://www.openssl.org/source/license.html
|
|
309
309
|
3rdparty dependency SQLite is statically linked in certain binary
|
310
310
|
distributions, like the Python wheels. SQLite is public domain.
|
311
311
|
|
312
|
+
|
312
313
|
--------------------------------------------------------------------------------
|
313
314
|
|
314
315
|
3rdparty dependency github.com/99designs/keyring
|
@@ -396,28 +397,27 @@ SOFTWARE
|
|
396
397
|
3rdparty dependency github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
|
397
398
|
is statically linked in certain binary distributions, like the Python wheels.
|
398
399
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob is under the MIT license.
|
399
|
-
MIT License
|
400
|
-
|
401
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
402
|
-
|
403
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
404
|
-
of this software and associated documentation files (the "Software"), to deal
|
405
|
-
in the Software without restriction, including without limitation the rights
|
406
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
407
|
-
copies of the Software, and to permit persons to whom the Software is
|
408
|
-
furnished to do so, subject to the following conditions:
|
409
|
-
|
410
|
-
The above copyright notice and this permission notice shall be included in all
|
411
|
-
copies or substantial portions of the Software.
|
412
|
-
|
413
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
414
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
415
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
416
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
417
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
418
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
419
|
-
SOFTWARE
|
420
|
-
|
400
|
+
MIT License
|
401
|
+
|
402
|
+
Copyright (c) Microsoft Corporation. All rights reserved.
|
403
|
+
|
404
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
405
|
+
of this software and associated documentation files (the "Software"), to deal
|
406
|
+
in the Software without restriction, including without limitation the rights
|
407
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
408
|
+
copies of the Software, and to permit persons to whom the Software is
|
409
|
+
furnished to do so, subject to the following conditions:
|
410
|
+
|
411
|
+
The above copyright notice and this permission notice shall be included in all
|
412
|
+
copies or substantial portions of the Software.
|
413
|
+
|
414
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
415
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
416
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
417
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
418
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
419
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
420
|
+
SOFTWARE
|
421
421
|
--------------------------------------------------------------------------------
|
422
422
|
|
423
423
|
3rdparty dependency github.com/JohnCGriffin/overflow
|
@@ -445,6 +445,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
445
445
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
446
446
|
SOFTWARE.
|
447
447
|
|
448
|
+
|
449
|
+
|
450
|
+
|
451
|
+
|
448
452
|
--------------------------------------------------------------------------------
|
449
453
|
|
450
454
|
3rdparty dependency github.com/andybalholm/brotli
|
@@ -1214,53 +1218,347 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1214
1218
|
|
1215
1219
|
--------------------------------------------------------------------------------
|
1216
1220
|
|
1217
|
-
3rdparty dependency
|
1221
|
+
3rdparty dependency golang.org/x/crypto/ocsp
|
1218
1222
|
is statically linked in certain binary distributions, like the Python wheels.
|
1219
|
-
|
1223
|
+
golang.org/x/crypto/ocsp is under the BSD-3-Clause license.
|
1224
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1220
1225
|
|
1221
|
-
|
1226
|
+
Redistribution and use in source and binary forms, with or without
|
1227
|
+
modification, are permitted provided that the following conditions are
|
1228
|
+
met:
|
1222
1229
|
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1230
|
+
* Redistributions of source code must retain the above copyright
|
1231
|
+
notice, this list of conditions and the following disclaimer.
|
1232
|
+
* Redistributions in binary form must reproduce the above
|
1233
|
+
copyright notice, this list of conditions and the following disclaimer
|
1234
|
+
in the documentation and/or other materials provided with the
|
1235
|
+
distribution.
|
1236
|
+
* Neither the name of Google Inc. nor the names of its
|
1237
|
+
contributors may be used to endorse or promote products derived from
|
1238
|
+
this software without specific prior written permission.
|
1226
1239
|
|
1227
|
-
|
1240
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1241
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1242
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1243
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1244
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1245
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1246
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1247
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1248
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1249
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1250
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1228
1251
|
|
1229
|
-
|
1230
|
-
is statically linked in certain binary distributions, like the Python wheels.
|
1231
|
-
golang.org/x/crypto/ocsp is under the BSD-3-Clause license.
|
1252
|
+
--------------------------------------------------------------------------------
|
1232
1253
|
|
1233
1254
|
3rdparty dependency golang.org/x/exp
|
1234
1255
|
is statically linked in certain binary distributions, like the Python wheels.
|
1235
1256
|
golang.org/x/exp is under the BSD-3-Clause license.
|
1257
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1258
|
+
|
1259
|
+
Redistribution and use in source and binary forms, with or without
|
1260
|
+
modification, are permitted provided that the following conditions are
|
1261
|
+
met:
|
1262
|
+
|
1263
|
+
* Redistributions of source code must retain the above copyright
|
1264
|
+
notice, this list of conditions and the following disclaimer.
|
1265
|
+
* Redistributions in binary form must reproduce the above
|
1266
|
+
copyright notice, this list of conditions and the following disclaimer
|
1267
|
+
in the documentation and/or other materials provided with the
|
1268
|
+
distribution.
|
1269
|
+
* Neither the name of Google Inc. nor the names of its
|
1270
|
+
contributors may be used to endorse or promote products derived from
|
1271
|
+
this software without specific prior written permission.
|
1272
|
+
|
1273
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1274
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1275
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1276
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1277
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1278
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1279
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1280
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1281
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1282
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1283
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1284
|
+
|
1285
|
+
--------------------------------------------------------------------------------
|
1236
1286
|
|
1237
1287
|
3rdparty dependency golang.org/x/mod/semver
|
1238
1288
|
is statically linked in certain binary distributions, like the Python wheels.
|
1239
1289
|
golang.org/x/mod/semver is under the BSD-3-Clause license.
|
1290
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1291
|
+
|
1292
|
+
Redistribution and use in source and binary forms, with or without
|
1293
|
+
modification, are permitted provided that the following conditions are
|
1294
|
+
met:
|
1295
|
+
|
1296
|
+
* Redistributions of source code must retain the above copyright
|
1297
|
+
notice, this list of conditions and the following disclaimer.
|
1298
|
+
* Redistributions in binary form must reproduce the above
|
1299
|
+
copyright notice, this list of conditions and the following disclaimer
|
1300
|
+
in the documentation and/or other materials provided with the
|
1301
|
+
distribution.
|
1302
|
+
* Neither the name of Google Inc. nor the names of its
|
1303
|
+
contributors may be used to endorse or promote products derived from
|
1304
|
+
this software without specific prior written permission.
|
1305
|
+
|
1306
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1307
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1308
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1309
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1310
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1311
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1312
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1313
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1314
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1315
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1316
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1317
|
+
|
1318
|
+
--------------------------------------------------------------------------------
|
1240
1319
|
|
1241
1320
|
3rdparty dependency golang.org/x/net
|
1242
1321
|
is statically linked in certain binary distributions, like the Python wheels.
|
1243
1322
|
golang.org/x/net is under the BSD-3-Clause license.
|
1323
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1324
|
+
|
1325
|
+
Redistribution and use in source and binary forms, with or without
|
1326
|
+
modification, are permitted provided that the following conditions are
|
1327
|
+
met:
|
1328
|
+
|
1329
|
+
* Redistributions of source code must retain the above copyright
|
1330
|
+
notice, this list of conditions and the following disclaimer.
|
1331
|
+
* Redistributions in binary form must reproduce the above
|
1332
|
+
copyright notice, this list of conditions and the following disclaimer
|
1333
|
+
in the documentation and/or other materials provided with the
|
1334
|
+
distribution.
|
1335
|
+
* Neither the name of Google Inc. nor the names of its
|
1336
|
+
contributors may be used to endorse or promote products derived from
|
1337
|
+
this software without specific prior written permission.
|
1338
|
+
|
1339
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1340
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1341
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1342
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1343
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1344
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1345
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1346
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1347
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1348
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1349
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1350
|
+
|
1351
|
+
--------------------------------------------------------------------------------
|
1244
1352
|
|
1245
1353
|
3rdparty dependency golang.org/x/sync/errgroup
|
1246
1354
|
is statically linked in certain binary distributions, like the Python wheels.
|
1247
1355
|
golang.org/x/sync/errgroup is under the BSD-3-Clause license.
|
1356
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1357
|
+
|
1358
|
+
Redistribution and use in source and binary forms, with or without
|
1359
|
+
modification, are permitted provided that the following conditions are
|
1360
|
+
met:
|
1361
|
+
|
1362
|
+
* Redistributions of source code must retain the above copyright
|
1363
|
+
notice, this list of conditions and the following disclaimer.
|
1364
|
+
* Redistributions in binary form must reproduce the above
|
1365
|
+
copyright notice, this list of conditions and the following disclaimer
|
1366
|
+
in the documentation and/or other materials provided with the
|
1367
|
+
distribution.
|
1368
|
+
* Neither the name of Google Inc. nor the names of its
|
1369
|
+
contributors may be used to endorse or promote products derived from
|
1370
|
+
this software without specific prior written permission.
|
1371
|
+
|
1372
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1373
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1374
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1375
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1376
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1377
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1378
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1379
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1380
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1381
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1382
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1383
|
+
|
1384
|
+
--------------------------------------------------------------------------------
|
1248
1385
|
|
1249
1386
|
3rdparty dependency golang.org/x/sys
|
1250
1387
|
is statically linked in certain binary distributions, like the Python wheels.
|
1251
1388
|
golang.org/x/sys is under the BSD-3-Clause license.
|
1389
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1390
|
+
|
1391
|
+
Redistribution and use in source and binary forms, with or without
|
1392
|
+
modification, are permitted provided that the following conditions are
|
1393
|
+
met:
|
1394
|
+
|
1395
|
+
* Redistributions of source code must retain the above copyright
|
1396
|
+
notice, this list of conditions and the following disclaimer.
|
1397
|
+
* Redistributions in binary form must reproduce the above
|
1398
|
+
copyright notice, this list of conditions and the following disclaimer
|
1399
|
+
in the documentation and/or other materials provided with the
|
1400
|
+
distribution.
|
1401
|
+
* Neither the name of Google Inc. nor the names of its
|
1402
|
+
contributors may be used to endorse or promote products derived from
|
1403
|
+
this software without specific prior written permission.
|
1404
|
+
|
1405
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1406
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1407
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1408
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1409
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1410
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1411
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1412
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1413
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1414
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1415
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1416
|
+
|
1417
|
+
--------------------------------------------------------------------------------
|
1252
1418
|
|
1253
1419
|
3rdparty dependency golang.org/x/term
|
1254
1420
|
is statically linked in certain binary distributions, like the Python wheels.
|
1255
1421
|
golang.org/x/term is under the BSD-3-Clause license.
|
1422
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1423
|
+
|
1424
|
+
Redistribution and use in source and binary forms, with or without
|
1425
|
+
modification, are permitted provided that the following conditions are
|
1426
|
+
met:
|
1427
|
+
|
1428
|
+
* Redistributions of source code must retain the above copyright
|
1429
|
+
notice, this list of conditions and the following disclaimer.
|
1430
|
+
* Redistributions in binary form must reproduce the above
|
1431
|
+
copyright notice, this list of conditions and the following disclaimer
|
1432
|
+
in the documentation and/or other materials provided with the
|
1433
|
+
distribution.
|
1434
|
+
* Neither the name of Google Inc. nor the names of its
|
1435
|
+
contributors may be used to endorse or promote products derived from
|
1436
|
+
this software without specific prior written permission.
|
1437
|
+
|
1438
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1439
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1440
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1441
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1442
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1443
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1444
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1445
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1446
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1447
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1448
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1449
|
+
|
1450
|
+
--------------------------------------------------------------------------------
|
1256
1451
|
|
1257
1452
|
3rdparty dependency golang.org/x/text
|
1258
1453
|
is statically linked in certain binary distributions, like the Python wheels.
|
1259
1454
|
golang.org/x/text is under the BSD-3-Clause license.
|
1455
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1456
|
+
|
1457
|
+
Redistribution and use in source and binary forms, with or without
|
1458
|
+
modification, are permitted provided that the following conditions are
|
1459
|
+
met:
|
1460
|
+
|
1461
|
+
* Redistributions of source code must retain the above copyright
|
1462
|
+
notice, this list of conditions and the following disclaimer.
|
1463
|
+
* Redistributions in binary form must reproduce the above
|
1464
|
+
copyright notice, this list of conditions and the following disclaimer
|
1465
|
+
in the documentation and/or other materials provided with the
|
1466
|
+
distribution.
|
1467
|
+
* Neither the name of Google Inc. nor the names of its
|
1468
|
+
contributors may be used to endorse or promote products derived from
|
1469
|
+
this software without specific prior written permission.
|
1470
|
+
|
1471
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1472
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1473
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1474
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1475
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1476
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1477
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1478
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1479
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1480
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1481
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1482
|
+
|
1483
|
+
--------------------------------------------------------------------------------
|
1260
1484
|
|
1261
1485
|
3rdparty dependency golang.org/x/tools
|
1262
1486
|
is statically linked in certain binary distributions, like the Python wheels.
|
1263
1487
|
golang.org/x/tools is under the BSD-3-Clause license.
|
1488
|
+
Copyright (c) 2009 The Go Authors. All rights reserved.
|
1489
|
+
|
1490
|
+
Redistribution and use in source and binary forms, with or without
|
1491
|
+
modification, are permitted provided that the following conditions are
|
1492
|
+
met:
|
1493
|
+
|
1494
|
+
* Redistributions of source code must retain the above copyright
|
1495
|
+
notice, this list of conditions and the following disclaimer.
|
1496
|
+
* Redistributions in binary form must reproduce the above
|
1497
|
+
copyright notice, this list of conditions and the following disclaimer
|
1498
|
+
in the documentation and/or other materials provided with the
|
1499
|
+
distribution.
|
1500
|
+
* Neither the name of Google Inc. nor the names of its
|
1501
|
+
contributors may be used to endorse or promote products derived from
|
1502
|
+
this software without specific prior written permission.
|
1503
|
+
|
1504
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1505
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1506
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1507
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1508
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1509
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1510
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1511
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1512
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1513
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1514
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1515
|
+
|
1516
|
+
--------------------------------------------------------------------------------
|
1517
|
+
|
1518
|
+
3rdparty dependency golang.org/x/xerrors
|
1519
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1520
|
+
golang.org/x/xerrors is under the BSD-3-Clause license.
|
1521
|
+
Copyright (c) 2019 The Go Authors. All rights reserved.
|
1522
|
+
|
1523
|
+
Redistribution and use in source and binary forms, with or without
|
1524
|
+
modification, are permitted provided that the following conditions are
|
1525
|
+
met:
|
1526
|
+
|
1527
|
+
* Redistributions of source code must retain the above copyright
|
1528
|
+
notice, this list of conditions and the following disclaimer.
|
1529
|
+
* Redistributions in binary form must reproduce the above
|
1530
|
+
copyright notice, this list of conditions and the following disclaimer
|
1531
|
+
in the documentation and/or other materials provided with the
|
1532
|
+
distribution.
|
1533
|
+
* Neither the name of Google Inc. nor the names of its
|
1534
|
+
contributors may be used to endorse or promote products derived from
|
1535
|
+
this software without specific prior written permission.
|
1536
|
+
|
1537
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
1538
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
1539
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
1540
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
1541
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
1542
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
1543
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
1544
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
1545
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
1546
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
1547
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1548
|
+
|
1549
|
+
--------------------------------------------------------------------------------
|
1550
|
+
|
1551
|
+
3rdparty dependency google.golang.org/genproto/googleapis/rpc/status
|
1552
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1553
|
+
google.golang.org/genproto/googleapis/rpc/status is under the Apache-2.0 license.
|
1554
|
+
|
1555
|
+
--------------------------------------------------------------------------------
|
1556
|
+
|
1557
|
+
3rdparty dependency google.golang.org/grpc
|
1558
|
+
is statically linked in certain binary distributions, like the Python wheels.
|
1559
|
+
google.golang.org/grpc is under the Apache-2.0 license.
|
1560
|
+
|
1561
|
+
--------------------------------------------------------------------------------
|
1264
1562
|
|
1265
1563
|
3rdparty dependency google.golang.org/protobuf
|
1266
1564
|
is statically linked in certain binary distributions, like the Python wheels.
|
data/lib/adbc/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: red-adbc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Apache Arrow Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: red-arrow
|