Skip to content

Commit bc94ed2

Browse files
committed
Add recursion_limit to yaml_test_runner
Root dependency paths
1 parent b2b2c8b commit bc94ed2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

yaml_test_runner/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description = "Generates and runs tests from Elasticsearch's YAML test specs"
77
repository = "https://github.com/elastic/elasticsearch-rs"
88

99
[dependencies]
10-
elasticsearch = { path = "../elasticsearch" }
11-
api_generator = { path = "../api_generator" }
10+
elasticsearch = { path = "./../elasticsearch" }
11+
api_generator = { path = "./../api_generator" }
1212

1313
base64 = "^0.11"
1414
clap = "~2"

yaml_test_runner/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19+
#![recursion_limit = "256"]
20+
1921
extern crate api_generator;
2022
#[macro_use]
2123
extern crate lazy_static;

0 commit comments

Comments
 (0)