forked from actix/sockjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (48 loc) · 1.18 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
[package]
name = "sockjs"
version = "0.4.0"
authors = ["Nikolay Kim <[email protected]>"]
description = "SockJS server for Actix"
readme = "README.md"
keywords = ["http", "web", "websockets", "sockjs", "actix"]
homepage = "https://github.com/actix/sockjs"
repository = "https://github.com/actix/sockjs.git"
documentation = "https://docs.rs/sockjs/"
categories = ["network-programming", "asynchronous", "web-programming::websocket"]
license = "MIT/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml", "/protocol/**"]
build = "build.rs"
[badges]
travis-ci = { repository = "actix/sockjs", branch = "master" }
codecov = { repository = "actix/sockjs", branch = "master", service = "github" }
[lib]
name = "sockjs"
path = "src/lib.rs"
[dependencies]
bitflags = "1.0"
bytes = "0.4"
futures = "0.1"
time = "0.1"
http = "^0.1.5"
md5 = "0.3"
rand = "0.3"
regex = "0.2"
lazy_static = "0.2"
percent-encoding = "1.0"
# serde
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
# other
log = "0.4"
# actix
actix = "^0.5.1"
actix-web = "^0.6"
[profile.release]
lto = true
opt-level = 3
[dev-dependencies]
env_logger = "0.5"
skeptic = "0.13"
[build-dependencies]
skeptic = "0.13"