-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (22 loc) · 1.01 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
[package]
name = "kuzzle"
version = "0.1.0"
authors = ["Alexandre Bouthinon <[email protected]>"]
edition = "2018"
# Dependencies ----------------------------------------------------------------
[dependencies]
async-native-tls = "0.3.3"
async-std = { version = "1.6.0", default_features = false }
async-trait = "0.1.32"
async-tungstenite = { version = "0.15.0", default_features = false, features = [ "async-std-runtime", "async-native-tls" ] }
futures-util = { version = "0.3", default-features = false, features = [ "async-await", "sink", "std" ] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
url = "2.1.1"
uuid = { version = "0.8", default_features = false, features = ["v4"] }
# Development dependencies ----------------------------------------------------
[dev-dependencies]
async-std = { version = "1.6.0", default_features = false, features = [ "attributes" ] }
faux = "0.1.3"
rusty-hook = "^0.11.2"
surimi = { git = "https://github.com/alexandrebouthinon/surimi", branch = "master" }