forked from MariaDB/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change bindings generation to opt in rather than opt out Work on a storage engine Updates for storage engine Storage compilation is a WIP, I want to refactor this Working comile for storage engine Woohoo! Successfully loaded a Rust storage engine (crashed when you use it, but progress...)
- Loading branch information
Showing
49 changed files
with
2,526 additions
and
630 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -629,4 +629,5 @@ versioninfo_exe.rc | |
win/packaging/ca/symlinks.cc | ||
|
||
# rust output | ||
rust/target | ||
target/ | ||
rust_target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Define our crates within a workspace | ||
|
||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"rust/mariadb-sys", | ||
"rust/mariadb", | ||
"rust/macros", | ||
"rust/common/encryption-common", | ||
"rust/examples/keymgt-basic-rs", | ||
"rust/examples/keymgt-debug-rs", | ||
"rust/examples/encryption-simple-rs", | ||
"rust/examples/encryption-aes-rs", | ||
"rust/examples/ftparser-simple", | ||
"rust/examples/storage-simple", | ||
"rust/examples/storage-csv", | ||
"rust/plugins/keymgt-clevis", | ||
"rust/plugins/encryption-file-chacha", | ||
"rust/test-runner", | ||
] |
Oops, something went wrong.