This repository was archived by the owner on May 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (45 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
55 lines (45 loc) · 1.6 KB
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
53
54
[package]
name = "fog05-python"
version = "0.3.0-a1"
authors = ["gabrik <gabriele.baldoni@gmail.com>"]
edition = "2018"
[package.metadata.maturin]
classifier = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Intended Audience :: Developers",
"Development Status :: 1 - Alpha",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: POSIX :: Linux",
]
maintainer = "ADLINK fog05 team, <fog05@adlink-labs.tech>"
[lib]
name = "fog05"
crate-type = ["cdylib"]
[dependencies]
fog05-sdk = { git = "https://github.com/eclipse-fog05/fog05.git", branch = "master" }
zrpc = { git = "https://github.com/eclipse-fog05/fog05.git", branch = "master" }
znrpc-macros = { git = "https://github.com/eclipse-fog05/fog05.git", branch = "master" }
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" }
zenoh-protocol = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "master" }
async-std = "=1.9.0"
uhlc = "0.2.1"
futures = "0.3.12"
log = "0.4.14"
env_logger = "0.8.3"
uuid = { version = "0.8.2", features = ["serde", "v4"] }
url = "2.2.0"
bincode = { version = "1.3.1", optional = true}
serde_cbor = {version = "0.11.1", optional = true}
serde_json = { version = "1.0.62", optional = true}
serde_yaml = {version = "0.8.17", optional = true}
[dependencies.pyo3]
version = "0.13.1"
features = ["extension-module", "abi3-py36"]
[features]
bincode_ser = ["bincode"]
json = ["serde_json"]
cbor = ["serde_cbor"]
yaml = ["serde_yaml"]
default = ["cbor", "json", "yaml"]