forked from zheludkovm/RustyTarantool
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (42 loc) · 1.09 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
[package]
name = "rusty_tarantool"
authors = ["Michael Zheludkov https://github.com/zheludkovm"]
description = "Tarantul async client based on tokio framework"
license = "Apache-2.0"
repository = "https://github.com/zheludkovm/RustyTarantool"
categories = ["asynchronous", "network-programming"]
keywords = ["asynchronous", "tarantool", "protocol" , "api"]
version = "0.3.0"
exclude = [
"test-tarantool/*"
]
readme = "README.md"
edition = "2018"
[lib]
name = "rusty_tarantool"
path = "src/lib.rs"
[dependencies]
maplit = "1"
futures-core = "0.3"
futures-sink = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
futures = "0.3"
bytes = "1.1"
log = "0.4"
env_logger = "0.10"
byteorder = "1.4"
tokio = { version = "1", features = ["full", "time"] }
tokio-util = {version = "0.7", features = ["codec", "time"]}
serde = { version = "1.0", features = ["derive"] }
rmp = "0.8"
rmp-serde = "1.1"
rmpv = { version = "1", features = ["with-serde"] }
base64 = "0.21"
sha1 = "0.10"
[dev-dependencies]
actix-web = "4"
actix-rt = "2.7"
serde_json = "1.0"
hyper = { version = "0.14", features = ["full"] }
url = "2"