-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (34 loc) · 977 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 = "pza-plugin-picoha"
edition = "2021"
version = "0.1.1"
[lib]
path = "src/lib.rs"
crate-type = ["lib", "cdylib"]
[dependencies]
# The panduza core library
panduza-platform-core = { git = "https://github.com/Panduza/panduza-platform-core", tag = "0.2.3", features = [
"serial",
] }
# The panduza connectors library
# Main async framework for the platform
tokio = { version = "1", features = ["full", "tracing"] }
# Json serialization & deserialization
serde_json = "1.0.114"
# Async trait support
async-trait = "0.1.77"
# Futures support
futures = "0.3.17"
#
prost = "0.13.4"
# Only necessary if using Protobuf well-known types:
prost-types = "0.13.4"
bytes = "1.0.1"
[package.metadata.cargo-post.dependencies]
panduza-platform-core = { git = "https://github.com/Panduza/panduza-platform-core" }
[build-dependencies]
prost-build = { version = "0.13.4" }
[features]
# Enable this if you want to build this driver as a dynamic plugin
#
plugin = []