From a6dd196782e7885cd46656c886c399752c054996 Mon Sep 17 00:00:00 2001 From: Vladimir Lebedev Date: Sun, 7 Jan 2024 15:13:28 +0700 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b756ae9..47ae9e5 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,12 @@ Minimal ADNL implementation in Rust (client-server only, without p2p for now). Specification of ADNL is available [here](https://github.com/tonstack/ton-docs/blob/main/ADNL/README.md). -| Feature | Implemented? | +| Feature | Status | | ------------- | -------------------------------- | -| ADNL Client | ✅ | -| ADNL Server | ❌ | -| ADNL P2P | ❌ | -| no_std | ✅ | +| ADNL Client | ✅ Implemented | +| ADNL Server | ❌ Not implemented | +| ADNL P2P | ❌ Not implemented | +| async | ❌ Not implemented | | ed25519 libs | curve25519_dalek + x25519_dalek | ## Quickstart @@ -73,4 +73,4 @@ fn main() -> Result<(), Box> { ); Ok(()) } -``` \ No newline at end of file +```