Skip to content

Commit 0234995

Browse files
committed
move README, LICENSE to root level
1 parent 7c2334f commit 0234995

File tree

2 files changed

+23
-25
lines changed

2 files changed

+23
-25
lines changed
File renamed without changes.
Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,31 @@ This project brings Reticulum's capabilities to the Rust ecosystem, enabling emb
1616

1717
## Structure
1818

19-
2019
```
2120
Reticulum-rs/
22-
├── src/ # Core Reticulum protocol implementation
23-
│ ├── buffer.rs
24-
│ ├── crypt.rs
25-
│ ├── destination.rs
26-
│ ├── error.rs
27-
│ ├── hash.rs
28-
│ ├── identity.rs
29-
│ ├── iface.rs
30-
│ ├── lib.rs
31-
│ ├── transport.rs
32-
│ └── packet.rs
33-
├── proto/ # Protocol definitions (e.g. for Kaonic)
34-
│ └── kaonic/
35-
│ └── kaonic.proto
36-
├── examples/ # Example clients and servers
37-
│ ├── kaonic_client.rs
38-
│ ├── link_client.rs
39-
│ ├── tcp_client.rs
40-
│ ├── tcp_server.rs
41-
│ └── testnet_client.rs
42-
├── Cargo.toml # Crate configuration
43-
├── LICENSE # License (MIT/Apache)
44-
└── build.rs
45-
````
21+
├── Cargo.toml
22+
├── reticulum-async # Async interface and transport management
23+
│ ├── Cargo.toml
24+
│ ├── examples # Example clients and servers
25+
│ ├── proto # Protocol definitions (e.g. for Kaonic)
26+
│ └── src
27+
│ ├── iface.rs
28+
│ ├── lib.rs
29+
│ ├── transport.rs
30+
│ └── utils.rs
31+
└── reticulum-core # Core Reticulum protocol implementation
32+
├── Cargo.toml
33+
└── src
34+
├── buffer.rs
35+
├── codec.rs
36+
├── crypt.rs
37+
├── destination.rs
38+
├── error.rs
39+
├── hash.rs
40+
├── identity.rs
41+
├── lib.rs
42+
└── packet.rs
43+
```
4644
## Getting Started
4745

4846
### Prerequisites

0 commit comments

Comments
 (0)