lancelot 0.3.4 → 0.4.0
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.
- checksums.yaml +4 -4
- data/Rakefile +39 -6
- data/ext/lancelot/Cargo.lock +5625 -0
- data/ext/lancelot/Cargo.toml +8 -8
- data/ext/lancelot/src/conversion.rs +49 -44
- data/ext/lancelot/src/dataset.rs +120 -107
- data/ext/lancelot/src/lib.rs +5 -5
- data/ext/lancelot/src/schema.rs +10 -12
- data/lib/lancelot/version.rb +1 -1
- data/lib/lancelot.rb +14 -1
- metadata +4 -6
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lancelot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Petersen
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rb_sys
|
|
@@ -120,6 +119,7 @@ files:
|
|
|
120
119
|
- examples/red_candle_integration.rb
|
|
121
120
|
- examples/vector_search.rb
|
|
122
121
|
- ext/lancelot/.gitignore
|
|
122
|
+
- ext/lancelot/Cargo.lock
|
|
123
123
|
- ext/lancelot/Cargo.toml
|
|
124
124
|
- ext/lancelot/extconf.rb
|
|
125
125
|
- ext/lancelot/src/conversion.rs
|
|
@@ -138,7 +138,6 @@ metadata:
|
|
|
138
138
|
homepage_uri: https://github.com/scientist-labs/lancelot
|
|
139
139
|
source_code_uri: https://github.com/scientist-labs/lancelot
|
|
140
140
|
changelog_uri: https://github.com/scientist-labs/lancelot/blob/main/CHANGELOG.md
|
|
141
|
-
post_install_message:
|
|
142
141
|
rdoc_options: []
|
|
143
142
|
require_paths:
|
|
144
143
|
- lib
|
|
@@ -153,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
153
152
|
- !ruby/object:Gem::Version
|
|
154
153
|
version: '0'
|
|
155
154
|
requirements: []
|
|
156
|
-
rubygems_version: 3.
|
|
157
|
-
signing_key:
|
|
155
|
+
rubygems_version: 3.6.9
|
|
158
156
|
specification_version: 4
|
|
159
157
|
summary: Ruby bindings for Lance - a modern columnar data format for ML
|
|
160
158
|
test_files: []
|