-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (43 loc) · 1.46 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
51
52
53
54
55
56
57
[package]
name = "pza-plugin-std"
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
# The panduza core library
panduza-platform-core = { git = "https://github.com/Panduza/panduza-platform-core", branch = "main", features = [
"log",
] }
# The panduza connectors library
panduza-platform-connectors = { git = "https://github.com/Panduza/panduza-platform-connectors.git" }
# 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"
# Trace instrumentation at disabled levels will be skipped and will not even be present
# in the resulting binary unless the verbosity level is specified dynamically.
# This level is configured separately for release and debug builds.
tracing = { version = "0.1", features = [
# "max_level_off",
# "max_level_error",
# "max_level_warn",
# "max_level_info",
# "max_level_debug",
"max_level_trace",
# "release_max_level_off",
# "release_max_level_error",
# "release_max_level_warn",
"release_max_level_info",
# "release_max_level_debug",
# "release_max_level_trace"
] }
[build-dependencies]
prost-build = { version = "0.13.1" }
[package.metadata.cargo-post.dependencies]
panduza-platform-core = { git = "https://github.com/Panduza/panduza-platform-core", branch = "main" }
[features]
# Enable tracing in stdout
log = []