-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 836 Bytes
/
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
[workspace]
members = [
"crates/*",
"example",
]
resolver = "2"
[workspace.package]
authors = [
"d3rpp <github@d3rpp.dev>",
]
description = "A wrapper around tonic-build which adds dependencies"
edition = "2021"
license = "MIT"
readme = "./README.md"
repository = "https://github.com/d3rpp/chur"
version = "0.4.1"
publish = true
[workspace.dependencies]
lazy_static = "^1.5"
thiserror = "^1.0"
prost = "^0.13"
prost-types = "^0.13"
tonic = "^0.12"
tonic-build = "^0.12"
ureq = "^2.10"
ron = "^0.8"
serde = { version = "^1.0", features = [
"derive",
] }
sha = "^1.0"
archiver-rs = "^0.5"