Files
uv/crates/uv-git/src/lib.rs
T
konsti 248da23f6d Split uv-git and uv-git-types (#11448)
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.
2025-02-17 10:37:55 +01:00

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;