Update docs.
This commit is contained in:
parent
9e2622648b
commit
b8a2f14694
2 changed files with 11 additions and 5 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -7,7 +7,13 @@ categories = ["embedded", "encoding", "network-programming"]
|
|||
keywords = ["no_std", "networking", "datalink", "protocol", "embedded"]
|
||||
readme = "README.md"
|
||||
license = "MIT OR Apache-2.0"
|
||||
repository = "https://github.com/fluffysquirrels/framed"
|
||||
|
||||
documentation = "https://docs.rs/framed"
|
||||
repository = "https://github.com/fluffysquirrels/framed-rs"
|
||||
|
||||
[badges.travis-ci]
|
||||
repository = "https://github.com/fluffysquirrels/framed-rs"
|
||||
branch = "master"
|
||||
|
||||
[dependencies]
|
||||
cobs = "^0.1.3"
|
||||
|
@ -19,5 +25,5 @@ default = ["use_std"]
|
|||
# Enable to print all data to stdout for testing.
|
||||
trace = []
|
||||
|
||||
# Use standard library, enabled by default; disable for no_std.
|
||||
# Use standard library. Enabled by default, disable for no_std.
|
||||
use_std = []
|
|
@ -1,6 +1,6 @@
|
|||
//! Send and receive slices of bytes over lossy streams of bytes.
|
||||
//!
|
||||
//! Conforming to / inspired by the [data link layer][dll] or layer 2
|
||||
//! Living in / inspired by the [data link layer][dll] or layer 2
|
||||
//! in the OSI networking model, this module enables sending slices of
|
||||
//! bytes of definite length over an underlying lossy transport that
|
||||
//! only supports sending an unstructured stream of bytes (a [physical
|
||||
|
@ -31,7 +31,7 @@
|
|||
//!
|
||||
//! ## Cargo feature flags
|
||||
//!
|
||||
//! `use_std`: Use standard library, enabled by default; disable for no_std.
|
||||
//! `use_std`: Use standard library. Enabled by default, disable for no_std.
|
||||
//!
|
||||
//! `trace`: Enable to print all data to stdout for testing.
|
||||
//!
|
||||
|
|
Loading…
Reference in a new issue