-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
61 lines (56 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "buffrs"
version = "0.5.0"
edition = "2021"
description = "Modern protobuf package management"
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"
required-features = ["build", "git"]
[[test]]
name = "e2e"
path = "tests/lib.rs"
test = true
[features]
default = ["build", "git"]
build = ["tonic-build", "protoc-bin-vendored"]
git = ["git2"]
[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 = { version = "0.17", optional = true }
home = "0.5.5"
human-panic = "1"
protoc-bin-vendored = { version = "3.0.0", optional = true }
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 = { version = "0.9", optional = true }
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2.4", features = ["serde"] }
walkdir = "2"
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
fs_extra = "1.3"
predicates = "3.0"
pretty_assertions = "1.4"
ring = "0.16.20"
hex = "0.4.3"