This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
executable file
·85 lines (76 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "eventstore"
version = "0.8.2"
authors = ["Yorick Laupa <yo.eight@gmail.com>"]
edition = "2018"
# Uncomment if you want to update messages.rs code-gen.
# We disabled codegen.rs because it requires having `protoc` installed on your machine
# in order to build that library.
# build = "codegen.rs"
license = "MIT"
description = "EventStore TCP client"
repository = "https://github.com/YoEight/eventstore-rs"
readme = "README.md"
keywords = ["database", "eventsourcing", "event", "eventstore", "ges"]
exclude = [
".gitignore",
".gitlab-ci.yml",
".travis.yml",
".github",
"rustfmt.toml"
]
categories = ["database", "api-bindings"]
[features]
default = []
es6 = [
"byteorder",
"http",
"tonic",
"prost",
"prost-derive",
"prost-types",
"rustls",
"webpki",
"base64"
]
tls = [
"tokio-rustls",
"rustls",
"webpki"
]
[dependencies]
tokio = { version = "0.2", features = ["net", "stream", "time"] }
tokio-byteorder = "0.2"
futures = "0.3"
uuid = { version = "0.8", features = [ "v4", "serde" ] }
bytes = "0.5"
protobuf = { version = "2.10", features = ["with-bytes"] }
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
log = "0.4"
reqwest = { version = "0.10", features = ["json"] }
vec1 = "1.4"
rand = { version = "0.7", features = ["getrandom", "small_rng"] }
byteorder = { version = "1.2", optional = true }
http = { version = "0.2", optional = true }
tonic = { version = "0.3", features = ["tls", "tls-roots"], optional = true }
prost = { version = "0.6", optional = true }
prost-derive = { version = "0.6", optional = true }
prost-types = { version = "0.6", optional = true }
rustls = { version = "0.18", features = ["dangerous_configuration"], optional = true }
webpki = { version = "0.21", optional = true }
base64 = { version = "^0.11", optional = true }
tokio-rustls = { version = "0.14", optional = true }
trust-dns-resolver = "0.19"
[build-dependencies]
protoc-rust = "2.16"
tonic-build = "0.2"
[[test]]
name = "integration"
[dev-dependencies]
env_logger = "0.6"
tokio-test = "0.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]