1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// =============================================================================
// Copyright (c) 2025 - 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Shared Cargo-aware crate-path mapping for generated derive code.
use Result as CrateResult;
use Error as CrateError;
use FoundCrate;
use Span;
use format_ident;
use DeriveInput;
use Error;
use Path;
use Result;
use parse_quote;
/// Converts a Cargo crate lookup into a generated-code path.
///
/// # Parameters
///
/// * `input` - Derive input used as the diagnostic span on lookup failure.
/// * `result` - Cargo-aware crate lookup result.
/// * `itself` - Caller-provided path used when the requested crate is the
/// consumer.
/// * `error_context` - Stable diagnostic prefix for lookup failures.
///
/// # Returns
///
/// The supplied self path or an absolute path naming the dependency.
///
/// # Errors
///
/// Returns a syntax error attached to `input` when the Cargo lookup failed.
///
/// # Panics
///
/// Panics if a successful Cargo lookup supplies a name that cannot become a
/// Rust identifier after replacing hyphens with underscores.
pub