X-Git-Url: https://code.octet-stream.net/m17rt/blobdiff_plain/9058451e46e4d36264282abe381aa9b6fd2c773f..1a444762d8fd7d48e4f56a87c6bd77f837522d5d:/m17core/src/address.rs?ds=sidebyside

diff --git a/m17core/src/address.rs b/m17core/src/address.rs
index f6ffa92..a224000 100755
--- a/m17core/src/address.rs
+++ b/m17core/src/address.rs
@@ -10,12 +10,10 @@ pub enum Address {
 ///
 /// May be up to 9 characters long - if it shorter then remaining space is filled with
 /// space characters.
-///
-/// If the "std" feature is enabled then callsigns be converted to or created from strings.
 #[derive(Debug, Clone, PartialEq, Eq)]
-pub struct Callsign([u8; 9]);
+pub struct Callsign(pub [u8; 9]);
 
-static ALPHABET: [u8; 40] = [
+pub static ALPHABET: [u8; 40] = [
     b' ', b'A', b'B', b'C', b'D', b'E', b'F', b'G', b'H', b'I', b'J', b'K', b'L', b'M', b'N', b'O',
     b'P', b'Q', b'R', b'S', b'T', b'U', b'V', b'W', b'X', b'Y', b'Z', b'0', b'1', b'2', b'3', b'4',
     b'5', b'6', b'7', b'8', b'9', b'-', b'/', b'.',