Skip to content
Open
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
730 changes: 411 additions & 319 deletions Cargo.lock

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,24 @@ license = "MIT/Apache-2.0"
repository = "https://gitlab.com/Redrield/ds-rs"
documentation = "https://docs.rs/ds"
readme = "README.md"
version = "1.2.4"
version = "1.3.0"
keywords = ["frc", "first", "robotics"]
categories = ["network-programming"]
authors = ["Kaitlyn Kenwell <[email protected]>"]
edition = "2018"

[dependencies]
bitflags = "1.0.4"
byteorder = "1.2.7"
failure = "0.1.3"
chrono = "0.4.6"
crossbeam-channel = "0.4.4"
smallvec = "0.6.7"
tokio = { version = "^0.2", features = ["full", "stream"] }
tokio-util = { version = "^0.2", features = ["udp", "codec"] }
bytes = "0.5.3"
futures-channel = "0.3.1"
futures-util = { version = "0.3.1", features = ["sink", "async-await"] }
futures = "0.3.1"
rand = "0.7.3"
bitflags = "2.6.0"
byteorder = "1.5.0"
failure = "0.1.8"
chrono = "0.4.38"
crossbeam-channel = "0.5.13"
smallvec = "1.13.2"
tokio = { version = "1.38.0", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["net", "codec"] }
tokio-stream = { version = "0.1.15", features = ["full"] }
bytes = "1.6.1"
futures-channel = "0.3.30"
futures-util = { version = "0.3.30", features = ["sink", "async-await"] }
futures = "0.3.30"
rand = "0.8.5"
Loading