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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
use super::errors::*;
use std::collections::HashMap;
use std::path::{Path, PathBuf};
use url::Url;
const CRATES_IO_INDEX: &str = "https://github.com/rust-lang/crates.io-index";
const CRATES_IO_REGISTRY: &str = "crates-io";
pub fn registry_url(manifest_path: &Path, registry: Option<&str>) -> CargoResult<Url> {
fn read_config(
registries: &mut HashMap<String, Source>,
path: impl AsRef<Path>,
) -> CargoResult<()> {
let content = std::fs::read(path)?;
let config = toml_edit::easy::from_slice::<CargoConfig>(&content)
.map_err(|_| invalid_cargo_config())?;
for (key, value) in config.registries {
registries.entry(key).or_insert(Source {
registry: value.index,
replace_with: None,
});
}
for (key, value) in config.source {
registries.entry(key).or_insert(value);
}
Ok(())
}
let mut registries: HashMap<String, Source> = HashMap::new();
for work_dir in manifest_path
.parent()
.expect("there must be a parent directory")
.ancestors()
{
let work_cargo_dir = work_dir.join(".cargo");
let config_path = work_cargo_dir.join("config");
if config_path.is_file() {
read_config(&mut registries, config_path)?;
} else {
let config_path = work_cargo_dir.join("config.toml");
if config_path.is_file() {
read_config(&mut registries, config_path)?;
}
}
}
let default_cargo_home = cargo_home()?;
let default_config_path = default_cargo_home.join("config");
if default_config_path.is_file() {
read_config(&mut registries, default_config_path)?;
} else {
let default_config_path = default_cargo_home.join("config.toml");
if default_config_path.is_file() {
read_config(&mut registries, default_config_path)?;
}
}
let mut source = match registry {
Some(CRATES_IO_INDEX) | None => {
let mut source = registries.remove(CRATES_IO_REGISTRY).unwrap_or_default();
source
.registry
.get_or_insert_with(|| CRATES_IO_INDEX.to_string());
source
}
Some(r) => registries
.remove(r)
.with_context(|| anyhow::format_err!("The registry '{}' could not be found", r))?,
};
while let Some(replace_with) = &source.replace_with {
let is_crates_io = replace_with == CRATES_IO_INDEX;
source = registries.remove(replace_with).with_context(|| {
anyhow::format_err!("The source '{}' could not be found", replace_with)
})?;
if is_crates_io {
source
.registry
.get_or_insert_with(|| CRATES_IO_INDEX.to_string());
}
}
let registry_url = source
.registry
.and_then(|x| Url::parse(&x).ok())
.with_context(invalid_cargo_config)?;
Ok(registry_url)
}
#[derive(Debug, Deserialize)]
struct CargoConfig {
#[serde(default)]
registries: HashMap<String, Registry>,
#[serde(default)]
source: HashMap<String, Source>,
}
#[derive(Default, Debug, Deserialize)]
struct Source {
#[serde(rename = "replace-with")]
replace_with: Option<String>,
registry: Option<String>,
}
#[derive(Debug, Deserialize)]
struct Registry {
index: Option<String>,
}
fn cargo_home() -> CargoResult<PathBuf> {
let default_cargo_home = dirs_next::home_dir()
.map(|x| x.join(".cargo"))
.with_context(|| anyhow::format_err!("Failed to read home directory"))?;
let cargo_home = std::env::var("CARGO_HOME")
.map(PathBuf::from)
.unwrap_or(default_cargo_home);
Ok(cargo_home)
}
mod code_from_cargo {
#![allow(dead_code)]
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum Kind {
Git(GitReference),
Path,
Registry,
LocalRegistry,
Directory,
}
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum GitReference {
Tag(String),
Branch(String),
Rev(String),
DefaultBranch,
}
}