-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
41 lines (39 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "buffrs"
version = "0.4.0"
edition = "2021"
description = "An opinionated protobuf package manager"
authors = ["Mara Schulke <mara.schulke@helsing.ai>"]
repository = "https://github.com/helsing-ai/buffrs"
documentation = "https://docs.rs/buffrs"
keywords = ["protobuf", "protocol", "buffers", "package", "distribution"]
categories = ["command-line-utilities"]
readme = "README.md"
license = "Apache-2.0"
[[bin]]
name = "buffrs"
path = "src/main.rs"
[dependencies]
async-trait = "0.1"
bytes = "1.0"
clap = { version = "4.3", features = ["cargo", "derive"] }
color-eyre = "0.6"
eyre = "0.6"
flate2 = "1"
futures = "0.3"
git2 = "0.17"
home = "0.5.5"
human-panic = "1"
protoc-bin-vendored = "3.0.0"
reqwest = "0.11"
serde = { version = "1", features = ["derive"] }
serde_typename = "0.1"
semver = { version = "1", features = ["serde"] }
tar = "0.4"
tokio = { version = "1", features = ["full", "tracing"] }
toml = "0.7"
tonic-build = "0.9"
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2.4", features = ["serde"] }
walkdir = "2"