248da23f6d
We want to build `uv-build` without depending on the network crates. In preparation for that, we split uv-git into uv-git and uv-git-types, where only uv-git depends on reqwest, so that uv-build can use uv-git-types.
12 lines
315 B
Rust
12 lines
315 B
Rust
pub use crate::credentials::{store_credentials_from_url, GIT_STORE};
|
|
pub use crate::git::GIT;
|
|
pub use crate::resolver::{
|
|
GitResolver, GitResolverError, RepositoryReference, ResolvedRepositoryReference,
|
|
};
|
|
pub use crate::source::{Fetch, GitSource, Reporter};
|
|
|
|
mod credentials;
|
|
mod git;
|
|
mod resolver;
|
|
mod source;
|