-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (27 loc) · 893 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
[package]
name = "alopecosa"
version = "0.1.3"
authors = ["dedefer <[email protected]>"]
edition = "2018"
readme = "README.md"
license = "MIT"
keywords = ["async", "tokio", "tarantool", "connector"]
categories = ["asynchronous", "concurrency", "database"]
repository = "https://github.com/dedefer/alopecosa"
homepage = "https://github.com/dedefer/alopecosa"
description = "Pure rust async Tarantool 1.6+ connector built on tokio"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = [ "time", "rt", "net", "macros", "sync", "io-util" ] }
rmp = "0.8"
rmp-serde = "0.15"
rmpv = "0.4"
serde = { version = "1", features = [ "derive" ] }
num-traits = "0.2"
num-derive = "0.3"
log = "0.4"
sha-1 = "0.9"
base64 = "0.13"
dashmap = "4"
[dev-dependencies]
tokio = { version = "1", features = [ "full" ] }