24 lines
805 B
TOML
24 lines
805 B
TOML
[package]
|
|
name = "radicle-fetch"
|
|
description = "Radicle fetch protocol"
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
version = "0.20.0"
|
|
authors = ["Fintan Halpenny <fintan.halpenny@gmail.com>"]
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
bstr = { workspace = true }
|
|
either = "1.9.0"
|
|
gix-features = { version = "0.48", features = ["progress"] }
|
|
gix-hash = { workspace = true }
|
|
gix-odb = "0.80.0"
|
|
gix-pack = "0.70.0"
|
|
gix-protocol = { version = "0.61.0", features = ["blocking-client"] }
|
|
gix-refspec = "0.41"
|
|
gix-transport = { version = "0.57.0", features = ["blocking-client"] }
|
|
log = { workspace = true, features = ["std"] }
|
|
nonempty = { workspace = true }
|
|
radicle = { workspace = true, features = ["bstr", "gix"] }
|
|
thiserror = { workspace = true, default-features = true } |