-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (46 loc) · 1.62 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
[package]
name = "spotflow"
version = "0.7.0"
edition = "2021"
license = "MIT"
description = "Device SDK for Spotflow IoT Platform"
homepage = "https://docs.spotflow.io/device-sdk/rust/"
readme = "README-CRATE.md"
keywords = ["spotflow", "iot", "device", "sdk"]
[features]
openssl-vendored = ["openssl/vendored"]
[dependencies]
anyhow = "1.0.56"
async-trait = "0.1.61"
brotli = "3.3.4"
chrono = { version = "0.4.19", features = ["serde"] }
http = "0.2.6"
json-patch = "0.2.6"
log = "0.4.16"
native-tls = "0.2.8"
openssl = { version = "0.10.29", optional = true }
rumqttc = { package = "spotflow-rumqttc-fork", version = "0.12.0", features = ["use-native-tls"], default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
sqlx = { version = "0.6.2", features = ["sqlite", "chrono", "macros", "runtime-tokio-native-tls", "offline"] }
thiserror = "1.0.30"
time = "0.3.36"
tokio = { version = "1.17.0", features = ["rt", "sync", "macros"] }
tokio-util = "0.7.1"
ureq = { version = "2.4.0", features = ["json", "native-tls"], default-features = false }
urlencoding = "2.1.0"
uuid = { version = "1.0.0", features = ["v4"] }
[build-dependencies]
tokio = { version = "1.17.0", features = ["rt"] }
sqlx = { version = "0.6.2", features = ["sqlite", "runtime-tokio-native-tls"] }
[dev-dependencies]
azure_core = "0.1.1"
azure_identity = "0.1.1"
env_logger = "0.9.0"
azure_storage = "0.1.0"
azure_storage_blobs = "0.1.0"
oauth2 = "4.1.0"
uuid = { version = "1.0.0", features = ["v4"] }
serde_json = "1.0.79"
ureq = { version = "2.4.0", features = ["json", "native-tls"], default-features = false }
native-tls = "0.2.8"