-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (34 loc) · 930 Bytes
/
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
[package]
name = "smartpi"
version = "0.1.0"
authors = ["gjz010 <[email protected]>"]
edition = "2018"
build = "build.rs"
#crate-type = "dylib"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[target.aarch64-unknown-linux-musl]
#linker = "aarch64-linux-musl-gcc"
[lib]
crate-type = ["staticlib"]
[target.'cfg(any(unix, macos))'.dependencies.rscam]
version = "0.5.5"
features = ["no_wrapper"]
[target.'cfg(windows)'.dependencies.escapi]
version = "4.0.0"
[dependencies.image]
version = "*"
[dependencies.tokio]
version = "=0.2.0-alpha.6"
[dependencies.tungstenite]
version = "0.9.2"
default-features = false
features = []
[dependencies]
#tokio = "0.2.0-alpha.6"
tokio-tungstenite = {version="0.10.0-alpha", git="https://github.com/dbcfd/tokio-tungstenite", branch="tokio2"}
#futures = "0.3.1"
byteorder = "1"
bytes = "*"
chrono = "*"
#scheduler = "0.1.3"
libc = "0.2.66"