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
use std::str::FromStr;
#[derive(Eq, PartialEq, Debug)]
pub enum Protocol {
V1,
V2,
}
impl FromStr for Protocol {
type Err = String;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(match s {
"1" => Protocol::V1,
"2" => Protocol::V2,
_ => return Err(format!("Unsupported protocol version '{}', choose '1' or '2'", s)),
})
}
}
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
mod impls {
use git_repository::protocol::transport;
use super::Protocol;
impl From<Protocol> for transport::Protocol {
fn from(v: Protocol) -> Self {
match v {
Protocol::V1 => transport::Protocol::V1,
Protocol::V2 => transport::Protocol::V2,
}
}
}
}
impl Default for Protocol {
fn default() -> Self {
Protocol::V2
}
}
#[cfg(any(feature = "async-client", feature = "blocking-client"))]
pub use git_repository::protocol::transport::connect;