- App events, can be polled by apps using the HTTP API - Node events, can be processed by a node implementation by registering a callback in the `Ubisync` object - Some further additions, like adding pot members etc. to test these new event functions
17 lines
No EOL
442 B
TOML
17 lines
No EOL
442 B
TOML
[package]
|
|
name = "ubisync-sdk"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.79"
|
|
reqwest = { version = "0.11.23", features = [ "json" ] }
|
|
serde = { version = "1.0.166", features = [ "derive" ] }
|
|
serde_json = "1.0.99"
|
|
tokio = "1.35.1"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = "0.3.17"
|
|
|
|
ubisync-lib = { path = "../ubisync-lib" } |