ublox-cellular-rs 0.1.0

Driver crate for u-blox cellular devices, implementation follows 'UBX-13002752 - R65'
Documentation
[package]
name = "ublox-cellular-rs"
version = "0.1.0"
authors = ["Mathias Koch <mk@blackbird.online>"]
description = "Driver crate for u-blox cellular devices, implementation follows 'UBX-13002752 - R65'"
readme = "../README.md"
keywords = ["arm", "cortex-m", "ublox", "cellular"]
categories = ["embedded", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BlackbirdHQ/ublox-cellular-rs"
edition = "2018"

[lib]
name = "ublox_cellular"
doctest = false

[dependencies]
heapless = { version = "^0.5", features = ["serde"] }
no-std-net = { version = "0.4.0", features = ["serde"] }

embedded-hal = { version = "1.0.0-alpha.4" }
embedded-nal = "0.2.0"
nb = "^1"
atat = { version = "0.6.0", features = ["derive"] }
serde_at = { version = "0.6.0" }
serde = { version = "^1", default-features = false, features = ["derive"] }
typenum = "^1"
defmt = { version = "^0.1" }
hash32 = "^0.1.1"
hash32-derive = "^0.1.0"

[features]
default = [
    "toby-r2",
    "socket-udp",
    "socket-tcp",
]

topy-l4 = []
mpci-l2 = []
lisa-u2 = []
sara-g3 = []
sara-g4 = []
sara-u2 = []
sara-u1 = []
toby-l2 = []
toby-r2 = []
lara-r2 = []
leon-g1 = []

socket-tcp = []
socket-udp = []

defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []