-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (60 loc) · 1.56 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
[package]
name = "tarantool-rs"
description = "Asyncronous tokio-based client for Tarantool"
version = "0.0.10"
edition = "2021"
authors = ["Andrey Kononov flowneee3@gmail.com"]
license = "MIT"
keywords = ["tarantool"]
categories = ["database"]
readme = "README.md"
repository = "https://github.com/Flowneee/tarantool-rs"
[dependencies]
anyhow = "1"
async-trait = "0.1"
backoff = "0.4"
base64 = "0.21"
bytes = "1"
futures = "0.3"
lru = "0.11"
parking_lot = { version = "0.12", features = ["send_guard"] }
pin-project = "1"
rmp = "0.8"
rmp-serde = "1"
rmpv = { version = "1", features = ["with-serde"] }
serde = { version = "1", features = ["derive"] }
sha-1 = "0.10"
thiserror = "1"
tokio = { version = "1", features = ["rt", "net", "io-util", "macros", "time"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", default-features = false, features = ["codec"] }
tracing = { version = "0.1", features = ["log"] }
[dev-dependencies]
assert_matches = "1.5"
clap = { version = "4", features = ["derive"] }
criterion = { version = "0.5", features = ["async_tokio"] }
maplit = "1"
pretty_env_logger = "0.5"
rustyline = "11"
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tracing-test = { version = "0.2", features = ["no-env-filter"] }
tarantool-test-container = { path = "tarantool-test-container" }
rusty_tarantool = "0.3"
[[example]]
name = "cli_client"
[[example]]
name = "schema"
[[example]]
name = "transactions"
[[example]]
name = "call"
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "compare"
harness = false
[[bench]]
name = "simple_loop"
harness = false