-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
45 lines (40 loc) · 1.17 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
[package]
name = "coolq-sdk-rust"
version = "0.1.21"
authors = ["soeur <[email protected]>"]
edition = "2018"
license = "MIT"
description = "A sdk for coolq"
documentation = "https://docs.rs/coolq-sdk-rust/"
repository = "https://github.com/juzi5201314/coolq-sdk-rust"
keywords = ["coolq", "qq", "sdk", "cqp"]
readme = "README.md"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
lazy_static = "1.2.0"
base64 = "0.11.0"
byteorder = "1.3.2"
regex = "1.3.1"
tokio = { version = "0.2.13", default-features = false, features = ["rt-core", "fs"], optional = true }
libloading = "0.5"
once_cell = "1.3.1"
md-5 = { version = "0.8.0", optional = true }
hex = { version = "0.4.1", optional = true }
cqrs_macro = { version = "0.1", path = "cqrs_macro" }
libc = "0.2.67"
futures = { version = "0.3.4", optional = true }
[features]
default = []
enhanced-cqcode = ["tokio", "hex", "md-5"]
async-listener = ["cqrs_macro/async-listener", "tokio", "futures"]
tokio-threaded = ["async-listener", "tokio/rt-threaded"]
[workspace]
members = ["cqrs_macro", "cqrs_builder"]
[profile.release]
opt-level = 3
lto = true
debug = false
codegen-units = 1
panic = "abort"