2023-08-24 23:04:51 +00:00
|
|
|
[package]
|
|
|
|
name = "embassy-net-ppp"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "embassy-net driver for PPP over Serial"
|
2024-01-11 23:14:10 +00:00
|
|
|
keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"]
|
2024-01-11 23:35:01 +00:00
|
|
|
categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
|
2023-08-24 23:04:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2021"
|
2024-01-11 23:14:10 +00:00
|
|
|
repository = "https://github.com/embassy-rs/embassy"
|
|
|
|
documentation = "https://docs.embassy.dev/embassy-net-ppp"
|
2023-08-24 23:04:51 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
defmt = ["dep:defmt", "ppproto/defmt"]
|
|
|
|
log = ["dep:log", "ppproto/log"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
log = { version = "0.4.14", optional = true }
|
|
|
|
|
2023-11-29 15:37:07 +00:00
|
|
|
embedded-io-async = { version = "0.6.1" }
|
2024-08-02 19:45:10 +00:00
|
|
|
embassy-net-driver-channel = { version = "0.3.0", path = "../embassy-net-driver-channel" }
|
2023-08-24 23:04:51 +00:00
|
|
|
embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
|
2023-08-29 23:04:43 +00:00
|
|
|
ppproto = { version = "0.1.2"}
|
2024-05-29 10:09:55 +00:00
|
|
|
embassy-sync = { version = "0.6.0", path = "../embassy-sync" }
|
2023-08-24 23:04:51 +00:00
|
|
|
|
|
|
|
[package.metadata.embassy_docs]
|
|
|
|
src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-ppp-v$VERSION/embassy-net-ppp/src/"
|
|
|
|
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-ppp/src/"
|
|
|
|
target = "thumbv7em-none-eabi"
|
|
|
|
features = ["defmt"]
|
2024-01-11 22:16:28 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["defmt"]
|