mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 10:27:26 +08:00
* experiment: reject bad peer info messages * v2.1.0.18 preview * add tagged sync * Add missing hypergraph changes * small tweaks to sync * allow local sync, use it for provers with workers * missing file * resolve build error * resolve sync issue, remove raw sync * resolve deletion promotion bug * resolve sync abstraction leak from tree deletion changes * rearrange prover sync * remove pruning from sync * restore removed sync flag * fix: sync, event stream deadlock, heuristic scoring of better shards * resolve hanging shutdown + pubsub proxy issue * further bugfixes: sync (restore old leaf sync), pubsub shutdown, merge events * fix: clean up rust ffi, background coverage events, and sync tweaks * fix: linking issue for channel, connectivity test aggression, sync regression, join tests * fix: disjoint sync, improper application of filter * resolve sync/reel/validation deadlock * adjust sync to handle no leaf edge cases, multi-path segment traversal * use simpler sync * faster, simpler sync with some debug extras * migration to recalculate * don't use batch * square up the roots * fix nil pointer * fix: seniority calculation, sync race condition, migration * make sync dumber * fix: tree deletion issue * fix: missing seniority merge request canonical serialization * address issues from previous commit test * stale workers should be cleared * remove missing gap check * rearrange collect, reduce sync logging noise * fix: the disjoint leaf/branch sync case * nuclear option on sync failures * v2.1.0.18, finalized
40 lines
798 B
TOML
40 lines
798 B
TOML
[package]
|
|
name = "channel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["lib", "staticlib"]
|
|
name = "channel"
|
|
|
|
[[bin]]
|
|
name = "uniffi-bindgen"
|
|
path = "uniffi-bindgen.rs"
|
|
|
|
[dependencies]
|
|
base64 = "0.22.1"
|
|
serde_json = "1.0.117"
|
|
ed448-goldilocks-plus = "0.11.2"
|
|
ed448-rust = { path = "../ed448-rust", version = "0.1.2" }
|
|
hex = "0.4.3"
|
|
rand = "0.8.5"
|
|
sha2 = "0.10.8"
|
|
hkdf = "0.12.4"
|
|
aes-gcm = "0.10.3"
|
|
thiserror = "1.0.63"
|
|
hmac = "0.12.1"
|
|
serde = { version = "1.0.208", features = ["derive"] }
|
|
lazy_static = "1.5.0"
|
|
uniffi = { version= "0.28.3", features = ["cli"]}
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.4", features = ["html_reports"] }
|
|
rand = "0.8.5"
|
|
|
|
[build-dependencies]
|
|
uniffi = { version = "0.28.3", features = [ "build" ] }
|
|
|
|
[[bench]]
|
|
name = "bench_channel"
|
|
harness = false
|