Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
170 changes: 156 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 14 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,32 @@ readme = "README.md"
repository = "https://github.com/Cosmo-CoDiOS/txmodems"
description = "Rust library for various MODEM file transfer protocols"
categories = ["embedded"]
keywords = ["data-transfer", "MODEM", "file-transfer", "embedded"]
version = "0.1.3"
authors = ["Dom Rodriguez <shymega@shymega.org.uk>"]
keywords = ["serial", "xmodem", "ymodem", "data-transfer", "MODEM", "file-transfer", "embedded"]
version = "0.2.1"
authors = [
"Dom Rodriguez <shymega@shymega.org.uk>",
"Eliud de León <eliud.deleon.10@gmail.com>",
"Eskild Jonatan Krumsvik Aanensen <eskild.krumsvik.aanensen@inapril.com>",
]
license = "MIT"
edition = "2021"

[package.metadata.docs.rs]
all-features = true

[features]
default = []
Comment thread
shymega marked this conversation as resolved.
default = ["ymodem", "async", "defmt"]
xmodem = []
ymodem = []
zmodem = []
async = ["embedded-io-async"]

[dependencies]
# anyhow = { version = "1.0.75", default-features = false }
core2 = { version = "0.4.0", default-features = false }
embedded-io-async = { version = "0.6.1", optional = true }
embedded-io = { version = "0.6.1" }
crc16 = "0.4.0"
defmt = { version = "0.3", optional = true }
Comment thread
shymega marked this conversation as resolved.
heapless = "0.8.0"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need this?

thiserror-no-std = "2.0.2"
anyhow = { version = "1.0.75", default-features = false }
Loading