forked from tokio-rs/mini-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 897 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
[package]
authors = ["Carl Lerche <me@carllerche.com>"]
edition = "2018"
name = "mini-redis"
version = "0.3.0"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/mini-redis/0.1.0/mini-redis/"
repository = "https://github.com/tokio-rs/mini-redis"
description = """
An incomplete implementation of a Rust client and server. Used as a
larger example of an idiomatic Tokio application.
"""
[[bin]]
name = "mini-redis-cli"
path = "src/bin/cli.rs"
[[bin]]
name = "mini-redis-server"
path = "src/bin/server.rs"
[dependencies]
async-stream = "0.3.0"
atoi = "0.3.2"
bytes = "0.6.0"
structopt = "0.3.14"
tokio = { version = "0.3.1", features = ["full"] }
tracing = "0.1.13"
tracing-futures = { version = "0.2.3" }
tracing-subscriber = "0.2.2"
[dev-dependencies]
# Enable test-utilities in dev mode only. This is mostly for tests.
tokio = { version = "0.3", features = ["test-util"] }