While we already have an in-tree `regex-ffi` crate which provides basic access to regex functionality for use in FormAutofillNative, the `regex` crate itself provides and maintains its own c api as the `rure` crate. This patch vendors in `rure` to allow us to use the more-fully-featured official ffi. Differential Revision: https://phabricator.services.mozilla.com/D158873
8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cargo build --verbose
|
|
(cd ctest && ./compile && LD_LIBRARY_PATH=../../target/debug ./test)
|
|
(cd examples && ./compile && LD_LIBRARY_PATH=../../target/debug ./iter)
|