117 matches across 25 files for error lang:TOML
snippet_mode: auto · sorted by relevance
triagebot.toml TOML 13 matches · showing 5 view file →
539[autolabel."A-translation"]
540trigger_files = [
541 "compiler/rustc_error_messages",
542 "compiler/rustc_errors/src/formatting.rs",
543 "compiler/rustc_macros/src/diagnostics"
· · ·
542 "compiler/rustc_errors/src/formatting.rs",
543 "compiler/rustc_macros/src/diagnostics"
544]
· · ·
961cc = ["@rust-lang/miri"]
962
963[mentions."compiler/rustc_trait_selection/src/error_reporting/infer/need_type_info.rs"]
964message = "Some changes occurred in need_type_info.rs"
965cc = ["@lcnr"]
· · ·
1030cc = ["@oli-obk"]
1031
1032[mentions."compiler/rustc_error_codes/src/lib.rs"]
1033message = "Some changes occurred in diagnostic error codes"
1034cc = ["@GuillaumeGomez"]
· · ·
1033message = "Some changes occurred in diagnostic error codes"
1034cc = ["@GuillaumeGomez"]
1035
+ 8 more matches in this file
src/tools/llvm-bitcode-linker/Cargo.toml TOML 1 matches view file →
12tracing-subscriber = {version = "0.3.0", features = ["std"] }
13clap = { version = "4.3", features = ["derive"] }
14thiserror = "1.0.24"
15
library/alloctests/Cargo.toml TOML 2 matches view file →
24
25[[test]]
26name = "vec_deque_alloc_error"
27path = "tests/vec_deque_alloc_error.rs"
28
· · ·
27path = "tests/vec_deque_alloc_error.rs"
28
29[[bench]]
src/tools/rustfmt/rustfmt.toml TOML 2 matches view file →
1error_on_line_overflow = true
2error_on_unformatted = true
3style_edition = "2024"
· · ·
2error_on_unformatted = true
3style_edition = "2024"
4overflow_delimited_expr = false
src/tools/clippy/rustfmt.toml TOML 2 matches view file →
4wrap_comments = true
5edition = "2024"
6error_on_line_overflow = true
7imports_granularity = "Module"
8style_edition = "2024"
· · ·
10 "tests/ui/crashes/ice-9405.rs",
11 "tests/ui/crashes/ice-10912.rs",
12 "tests/ui/non_expressive_names_error_recovery.rs",
13]
14
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_target/Cargo.toml TOML 2 matches view file →
10rustc_abi = { path = "../rustc_abi" }
11rustc_data_structures = { path = "../rustc_data_structures" }
12rustc_error_messages = { path = "../rustc_error_messages" }
13rustc_fs_util = { path = "../rustc_fs_util" }
14rustc_macros = { path = "../rustc_macros" }
· · ·
19serde_derive = "1.0.219"
20serde_json = "1.0.59"
21serde_path_to_error = "0.1.17"
22tracing = "0.1"
23# tidy-alphabetical-end
compiler/rustc_query_impl/Cargo.toml TOML 1 matches view file →
8measureme = "12.0.1"
9rustc_data_structures = { path = "../rustc_data_structures" }
10rustc_errors = { path = "../rustc_errors" }
11rustc_hir = { path = "../rustc_hir" }
12rustc_macros = { path = "../rustc_macros" }
compiler/rustc_privacy/Cargo.toml TOML 1 matches view file →
8rustc_ast = { path = "../rustc_ast" }
9rustc_data_structures = { path = "../rustc_data_structures" }
10rustc_errors = { path = "../rustc_errors" }
11rustc_hir = { path = "../rustc_hir" }
12rustc_macros = { path = "../rustc_macros" }
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_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_monomorphize/Cargo.toml TOML 1 matches view file →
8rustc_abi = { path = "../rustc_abi" }
9rustc_data_structures = { path = "../rustc_data_structures" }
10rustc_errors = { path = "../rustc_errors" }
11rustc_hir = { path = "../rustc_hir" }
12rustc_index = { path = "../rustc_index" }
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_mir_dataflow/Cargo.toml TOML 1 matches view file →
10rustc_abi = { path = "../rustc_abi" }
11rustc_data_structures = { path = "../rustc_data_structures" }
12rustc_errors = { path = "../rustc_errors" }
13rustc_graphviz = { path = "../rustc_graphviz" }
14rustc_hir = { path = "../rustc_hir" }
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_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_ty_utils/Cargo.toml TOML 1 matches view file →
9rustc_abi = { path = "../rustc_abi" }
10rustc_data_structures = { path = "../rustc_data_structures" }
11rustc_errors = { path = "../rustc_errors" }
12rustc_hashes = { path = "../rustc_hashes" }
13rustc_hir = { path = "../rustc_hir" }
compiler/rustc_parse/Cargo.toml TOML 1 matches view file →
11rustc_ast_pretty = { path = "../rustc_ast_pretty" }
12rustc_data_structures = { path = "../rustc_data_structures" }
13rustc_errors = { path = "../rustc_errors" }
14rustc_feature = { path = "../rustc_feature" }
15rustc_index = { path = "../rustc_index" }
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_trait_selection/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_infer = { path = "../rustc_infer" }
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_middle/Cargo.toml TOML 2 matches view file →
17rustc_ast_ir = { path = "../rustc_ast_ir" }
18rustc_data_structures = { path = "../rustc_data_structures" }
19rustc_error_messages = { path = "../rustc_error_messages" } # Used for intra-doc links
20rustc_errors = { path = "../rustc_errors" }
21rustc_feature = { path = "../rustc_feature" }
· · ·
20rustc_errors = { path = "../rustc_errors" }
21rustc_feature = { path = "../rustc_feature" }
22rustc_graphviz = { path = "../rustc_graphviz" }
src/tools/generate-copyright/Cargo.toml TOML 1 matches view file →
13serde = { version = "1.0.147", features = ["derive"] }
14serde_json = "1.0.85"
15thiserror = "1"
16
compiler/rustc_mir_build/Cargo.toml TOML 1 matches view file →
12rustc_ast = { path = "../rustc_ast" }
13rustc_data_structures = { path = "../rustc_data_structures" }
14rustc_errors = { path = "../rustc_errors" }
15rustc_hir = { path = "../rustc_hir" }
16rustc_index = { path = "../rustc_index" }
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" }
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.