Compare changes
.gitlab-ci.yml
0 → 100644
+11
−0
+6
−4
Original line number | Original line | Diff line number | Diff line |
---|---|---|---|
[package]
|
[package]
|
||
name = "ham-cats"
|
name = "ham-cats"
|
||
version = "0.1.0"
|
version = "0.2.2"
|
||
edition = "2021"
|
edition = "2021"
|
||
license = "MIT"
|
license = "MIT"
|
||
description = "Reference implementations for CATS, the ham radio protocol"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
repository = "https://gitlab.scd31.com/cats/ham_cats"
|
||
homepage = "https://cats.radio"
|
|||
categories = ["embedded", "encoding", "no-std", "no-std::no-alloc"]
|
|||
[dependencies]
|
[dependencies]
|
||
arrayvec = { version = "0.7.4", default-features = false }
|
arrayvec = { version = "0.7.4", default-features = false }
|
||
@@ -12,6 +14,6 @@ bitvec = { version = "1.0.1", default-features = false } | |||
crc = "3.0.1"
|
crc = "3.0.1"
|
||
encoding_rs = { version = "0.8.33", default-features = false }
|
encoding_rs = { version = "0.8.33", default-features = false }
|
||
half = { version = "2.3.1", default-features = false }
|
half = { version = "2.3.1", default-features = false }
|
||
labrador-ldpc = "1.1"
|
labrador-ldpc = "1.2.1"
|
||
paste = "1.0.14"
|
paste = "1.0.14"
|
||
snafu = { version = "0.7.5", default-features = false } |
snafu = { version = "0.7.5", default-features = false } |
LICENSE.md
0 → 100644
+26
−0
+2
−4
+6
−1
fuzz/fuzz_targets/fuzz_target_4.rs
0 → 100644
+16
−0
+18
−18
+45
−0
src/identity.rs
0 → 100644
+19
−0
+56
−0
+152
−1
+4
−2