-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (45 loc) · 1.05 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
[package]
name = "bing-rs"
version = "0.0.4"
description = "Rust bindings to the Bing API"
authors = ["Lilis Iskandar <[email protected]>"]
license = "MIT"
repository = "https://github.com/veandco/bing-rs.git"
homepage = "https://github.com/veandco/bing-rs"
documentation = "https://docs.rs/bing-rs/"
exclude = [ "assets/*.raw" ]
[features]
default = ["rustls"]
rustls = ["hyper-rustls"]
rust-native-tls = ["native-tls", "hyper-tls"]
[dependencies]
chrono = "0.4"
env_logger = "0.5"
error-chain = "0.12"
hyper = "0.12"
hyper-rustls = { version = "0.14", optional = true }
hyper-tls = { version = "0.3", optional = true }
native-tls = { version = "0.2", optional = true }
log = "0.4"
tokio-core = "0.1"
futures = "0.1"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
url = "1.7"
libc = "0.2"
[dependencies.uuid]
version = "0.6"
features = ["v4"]
[dependencies.ws]
version = "0.7"
features = ["ssl"]
[dev-dependencies]
chan = "0.1"
chan-signal = "0.3"
cpal = "0.8"
[build-dependencies]
cbindgen = "0.6"
[lib]
name = "bing_rs"
crate-type = ["lib", "dylib", "staticlib"]