-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 1.11 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
[package]
name = "e114_core"
version = "0.3.1-alpha.0"
authors = ["Andras Mocsary <nobody@reedwolf.com>"]
edition = "2018"
repository = "https://github.com/element114/e114_core"
documentation = "https://docs.rs/e114_core"
license = "MIT OR Apache-2.0"
description = "A convenient wrapper around several rust web frameworks to isolate business logic from protocol handling."
publish = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.*", features = ["derive"] }
serde_json = "1.*"
# this crate is compatible with schemars 0.6.* and 0.7.*
schemars = { version = ">=0.6", optional = true }
log = ">=0.4"
# this crate is compatible with http 0.2.* only
http = ">=0.2.*"
# this crate is compatible with actix-web 3.* only
actix-web = { version = ">=3.0", optional = true }
hyper = { version = ">=0.11", optional = true }
http-serde = "1.0.3"
[features]
default = []
jsonschema = ["schemars"]
actix_web = ["actix-web"]
hyper_body = ["hyper"]
[dev-dependencies]
schemars = { version = ">=0.6" }
[package.metadata.docs.rs]
all-features = true