Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: initial commit for rust evaluator client side #2322

Merged
merged 25 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
209ad12
feat: initial commit for rust evaluator client side
yquansah Nov 1, 2023
9d1bc06
chore: rename of entire directory tree
yquansah Nov 1, 2023
9307772
chore: write tests for all the matches constraints types
yquansah Nov 1, 2023
28fbf28
chore: redo gitignore
yquansah Nov 1, 2023
35bc8ef
chore: format rust code
yquansah Nov 1, 2023
f8685fc
chore: use generic instead of parameter impl
yquansah Nov 1, 2023
d79b9f5
chore: remove println! statement
yquansah Nov 1, 2023
9036406
feat: support variant attachment as String type Rust
yquansah Nov 2, 2023
287ac0c
feat: new engine logic
yquansah Nov 6, 2023
c68ac2f
chore: fix unwrap by using match instead
yquansah Nov 6, 2023
b70bb11
chore: add boolean method to engine and format code
yquansah Nov 6, 2023
6cee0f3
feat: add request logic for getting document text from configurable u…
yquansah Nov 6, 2023
d99f116
chore: apply cargo clippy updates
yquansah Nov 6, 2023
7c0e5c3
feat: add three basic functions for allocating engine and retrieving it
yquansah Nov 6, 2023
b77ce8c
chore: remove TODO
yquansah Nov 6, 2023
52247fe
feat: modify code to adapt to endpoint
yquansah Nov 7, 2023
8a9f755
chore: use environment variables to get update interval
yquansah Nov 7, 2023
1ff5ed3
chore: remove unnecessary clone
yquansah Nov 7, 2023
6bfb4d7
chore: add rust workspace
markphelps Nov 7, 2023
4e44703
chore: update enums
markphelps Nov 7, 2023
0973ff8
Merge branch 'client-eval' into rust-evaluation
markphelps Nov 7, 2023
b9536eb
chore: impl default for responses
markphelps Nov 7, 2023
a801b4c
chore: make constants
markphelps Nov 7, 2023
0e8e60f
feat: Add changes for FFI boundaries and example code
yquansah Nov 8, 2023
a6f5139
Merge remote-tracking branch 'origin/rust-evaluation' into rust-evalu…
yquansah Nov 8, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ build/hack/out/
examples/cockroachdb/data
playwright-report/
screenshots/

# Rust
**/target
/Cargo.lock
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[workspace]
resolver = "2"
members = ["./client/engine"]
Loading
Loading