117 matches across 25 files for error lang:TOML
snippet_mode: grep · sorted by relevance
bootstrap.example.toml TOML 5 matches view file →
358#
359# Under Windows this should be `yarn.cmd` or path to it (verified on nodejs v18.06), or
360# error will be emitted.
361#build.yarn = "yarn"
362
· · ·
773#rust.optimize-tests = true
774
775# Flag indicating whether codegen tests will be run or not. If you get an error
776# saying that the FileCheck executable is missing, you may want to disable this.
777# Also see the target's llvm-filecheck option.
· · ·
828
829# Whether to deny warnings in crates. Set to `false` to avoid
830# error: warnings are denied by `build.warnings` configuration
831#rust.deny-warnings = true
832
· · ·
833# Print backtrace on internal compiler errors during bootstrap
834#rust.backtrace-on-ice = false
835
· · ·
905#rust.std-features = ["panic_unwind"]
906
907# Trigger a `DebugBreak` after an internal compiler error during bootstrap on Windows
908#rust.break-on-ice = true
909
compiler/rustc_abi/Cargo.toml TOML 4 matches view file →
10rand_xoshiro = { version = "0.7.0", optional = true }
11rustc_data_structures = { path = "../rustc_data_structures", optional = true }
12rustc_error_messages = { path = "../rustc_error_messages", optional = true }
13rustc_errors = { path = "../rustc_errors", optional = true }
14rustc_hashes = { path = "../rustc_hashes" }
· · ·
13rustc_errors = { path = "../rustc_errors", optional = true }
14rustc_hashes = { path = "../rustc_hashes" }
15rustc_index = { path = "../rustc_index", default-features = false }
· · ·
27nightly = [
28 "dep:rustc_data_structures",
29 "dep:rustc_error_messages",
30 "dep:rustc_errors",
31 "dep:rustc_macros",
· · ·
30 "dep:rustc_errors",
31 "dep:rustc_macros",
32 "dep:rustc_serialize",
compiler/rustc_ast_lowering/Cargo.toml TOML 1 matches view file →
14rustc_attr_parsing = { path = "../rustc_attr_parsing" }
15rustc_data_structures = { path = "../rustc_data_structures" }
16rustc_errors = { path = "../rustc_errors" }
17rustc_feature = { path = "../rustc_feature" }
18rustc_hir = { path = "../rustc_hir" }
compiler/rustc_ast_passes/Cargo.toml TOML 1 matches view file →
12rustc_attr_parsing = { path = "../rustc_attr_parsing" }
13rustc_data_structures = { path = "../rustc_data_structures" }
14rustc_errors = { path = "../rustc_errors" }
15rustc_feature = { path = "../rustc_feature" }
16rustc_hir = { path = "../rustc_hir" }
compiler/rustc_attr_parsing/Cargo.toml TOML 1 matches view file →
10rustc_ast_pretty = { path = "../rustc_ast_pretty" }
11rustc_data_structures = { path = "../rustc_data_structures" }
12rustc_errors = { path = "../rustc_errors" }
13rustc_feature = { path = "../rustc_feature" }
14rustc_hir = { path = "../rustc_hir" }
compiler/rustc_borrowck/Cargo.toml TOML 1 matches view file →
11rustc_abi = { path = "../rustc_abi" }
12rustc_data_structures = { path = "../rustc_data_structures" }
13rustc_errors = { path = "../rustc_errors" }
14rustc_graphviz = { path = "../rustc_graphviz" }
15rustc_hir = { path = "../rustc_hir" }
compiler/rustc_builtin_macros/Cargo.toml TOML 1 matches view file →
13rustc_attr_parsing = { path = "../rustc_attr_parsing" }
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_errors = { path = "../rustc_errors" }
16rustc_expand = { path = "../rustc_expand" }
17rustc_feature = { path = "../rustc_feature" }
compiler/rustc_codegen_gcc/Cargo.toml TOML 1 matches view file →
22tempfile = "3.20"
23gccjit = { version = "3.3.0", features = ["dlopen"] }
24#gccjit = { git = "https://github.com/rust-lang/gccjit.rs", branch = "error-dlopen", features = ["dlopen"] }
25
26# Local copy.
compiler/rustc_codegen_llvm/Cargo.toml TOML 1 matches view file →
23rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
24rustc_data_structures = { path = "../rustc_data_structures" }
25rustc_errors = { path = "../rustc_errors" }
26rustc_fs_util = { path = "../rustc_fs_util" }
27rustc_hashes = { path = "../rustc_hashes" }
compiler/rustc_codegen_ssa/Cargo.toml TOML 1 matches view file →
18rustc_attr_parsing = { path = "../rustc_attr_parsing" }
19rustc_data_structures = { path = "../rustc_data_structures" }
20rustc_errors = { path = "../rustc_errors" }
21rustc_fs_util = { path = "../rustc_fs_util" }
22rustc_hashes = { path = "../rustc_hashes" }
compiler/rustc_const_eval/Cargo.toml TOML 1 matches view file →
11rustc_ast = { path = "../rustc_ast" }
12rustc_data_structures = { path = "../rustc_data_structures" }
13rustc_errors = { path = "../rustc_errors" }
14rustc_hir = { path = "../rustc_hir" }
15rustc_index = { path = "../rustc_index" }
compiler/rustc_driver_impl/Cargo.toml TOML 1 matches view file →
14rustc_const_eval = { path = "../rustc_const_eval" }
15rustc_data_structures = { path = "../rustc_data_structures" }
16rustc_errors = { path = "../rustc_errors" }
17rustc_expand = { path = "../rustc_expand" }
18rustc_feature = { path = "../rustc_feature" }
compiler/rustc_error_codes/Cargo.toml TOML 1 matches view file →
1[package]
2name = "rustc_error_codes"
3version = "0.0.0"
4edition = "2024"
compiler/rustc_error_messages/Cargo.toml TOML 1 matches view file →
1[package]
2name = "rustc_error_messages"
3version = "0.0.0"
4edition = "2024"
compiler/rustc_errors/Cargo.toml TOML 3 matches view file →
1[package]
2name = "rustc_errors"
3version = "0.0.0"
4edition = "2024"
· · ·
12rustc_ast = { path = "../rustc_ast" }
13rustc_data_structures = { path = "../rustc_data_structures" }
14rustc_error_codes = { path = "../rustc_error_codes" }
15rustc_error_messages = { path = "../rustc_error_messages" }
16rustc_hashes = { path = "../rustc_hashes" }
· · ·
15rustc_error_messages = { path = "../rustc_error_messages" }
16rustc_hashes = { path = "../rustc_hashes" }
17rustc_index = { path = "../rustc_index" }
compiler/rustc_expand/Cargo.toml TOML 1 matches view file →
15rustc_attr_parsing = { path = "../rustc_attr_parsing" }
16rustc_data_structures = { path = "../rustc_data_structures" }
17rustc_errors = { path = "../rustc_errors" }
18rustc_feature = { path = "../rustc_feature" }
19rustc_hir = { path = "../rustc_hir" }
compiler/rustc_hir/Cargo.toml TOML 2 matches view file →
13rustc_ast_pretty = { path = "../rustc_ast_pretty" }
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_error_messages = { path = "../rustc_error_messages" }
16rustc_errors = { path = "../rustc_errors" }
17rustc_hashes = { path = "../rustc_hashes" }
· · ·
16rustc_errors = { path = "../rustc_errors" }
17rustc_hashes = { path = "../rustc_hashes" }
18rustc_hir_id = { path = "../rustc_hir_id" }
compiler/rustc_hir_analysis/Cargo.toml TOML 1 matches view file →
15rustc_ast = { path = "../rustc_ast" }
16rustc_data_structures = { path = "../rustc_data_structures" }
17rustc_errors = { path = "../rustc_errors" }
18rustc_feature = { path = "../rustc_feature" }
19rustc_hir = { path = "../rustc_hir" }
compiler/rustc_hir_typeck/Cargo.toml TOML 1 matches view file →
10rustc_ast = { path = "../rustc_ast" }
11rustc_data_structures = { path = "../rustc_data_structures" }
12rustc_errors = { path = "../rustc_errors" }
13rustc_hir = { path = "../rustc_hir" }
14rustc_hir_analysis = { path = "../rustc_hir_analysis" }
compiler/rustc_incremental/Cargo.toml TOML 1 matches view file →
8rand = "0.9.0"
9rustc_data_structures = { path = "../rustc_data_structures" }
10rustc_errors = { path = "../rustc_errors" }
11rustc_fs_util = { path = "../rustc_fs_util" }
12rustc_graphviz = { path = "../rustc_graphviz" }
compiler/rustc_infer/Cargo.toml TOML 1 matches view file →
10# tidy-alphabetical-start
11rustc_data_structures = { path = "../rustc_data_structures" }
12rustc_errors = { path = "../rustc_errors" }
13rustc_hir = { path = "../rustc_hir" }
14rustc_index = { path = "../rustc_index" }
compiler/rustc_interface/Cargo.toml TOML 1 matches view file →
17rustc_const_eval = { path = "../rustc_const_eval" }
18rustc_data_structures = { path = "../rustc_data_structures" }
19rustc_errors = { path = "../rustc_errors" }
20rustc_expand = { path = "../rustc_expand" }
21rustc_feature = { path = "../rustc_feature" }
compiler/rustc_lint/Cargo.toml TOML 1 matches view file →
13rustc_attr_parsing = { path = "../rustc_attr_parsing" }
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_errors = { path = "../rustc_errors" }
16rustc_feature = { path = "../rustc_feature" }
17rustc_hir = { path = "../rustc_hir" }
compiler/rustc_lint_defs/Cargo.toml TOML 1 matches view file →
7# tidy-alphabetical-start
8rustc_data_structures = { path = "../rustc_data_structures" }
9rustc_error_messages = { path = "../rustc_error_messages" }
10rustc_hir_id = { path = "../rustc_hir_id" }
11rustc_macros = { path = "../rustc_macros" }
compiler/rustc_metadata/Cargo.toml TOML 1 matches view file →
13rustc_attr_parsing = { path = "../rustc_attr_parsing" }
14rustc_data_structures = { path = "../rustc_data_structures" }
15rustc_errors = { path = "../rustc_errors" }
16rustc_expand = { path = "../rustc_expand" }
17rustc_feature = { path = "../rustc_feature" }
Search syntax
auth loginboth terms (AND is implicit)
auth OR logineither term
NOT path:vendorexclude matches
"exact phrase"quoted exact match
/func\s+Test/regex
handler~1fuzzy (Levenshtein 1)
file:*_test.gofilename glob
path:pkg/auth/**full path glob
lang:golanguage filter

Search any public repo from your terminal

This page calls POST /api/v1/code_search. Same tool, available over MCP for Claude/Cursor/Copilot.