-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
38 lines (31 loc) · 1.19 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "ublox-sockets"
version = "0.5.0"
edition = "2021"
authors = ["Mathias Koch <mk@blackbird.online>"]
description = "Common sockets layer for host-based ublox devices"
readme = "README.md"
keywords = ["arm", "cortex-m", "AT", "no-std"]
categories = ["embedded", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BlackbirdHQ/ublox-sockets"
documentation = "https://docs.rs/ublox-sockets"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "^1", default-features = false, features = ["derive"] }
heapless = { version = "^0.8", features = ["serde"] }
#atat = { version = "0.19", features = ["derive"] }
atat = { git = "https://github.com/BlackbirdHQ/atat", rev = "38e0322", features = [
"derive",
"bytes",
] }
embassy-time = "0.2"
no-std-net = { version = "0.6", features = ["serde"] }
log = { version = "^0.4", default-features = false, optional = true }
defmt = { version = "^0.3", optional = true }
[features]
default = ["socket-udp", "socket-tcp"]
socket-tcp = []
socket-udp = []
[patch.crates-io]
no-std-net = { git = "https://github.com/rushmorem/no-std-net", branch = "issue-15" }