forked from daniestevez/galileo-osnma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.33 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
39
40
41
42
43
44
[package]
name = "galileo-osnma"
version = "0.2.0"
edition = "2021"
authors = ["Daniel Estevez <daniel@destevez.net>"]
description = "Galileo OSNMA (Open Service Navigation Message Authentication)"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/daniestevez/galileo-osnma/"
repository = "https://github.com/daniestevez/galileo-osnma/"
keywords = ["galileo", "gnss", "osnma", "authentication", "cryptography"]
categories = ["aerospace::space-protocols", "authentication", "embedded", "no-std"]
exclude = ["/.github"]
[features]
# Galmon protobuf transport format support
galmon = ["bytes", "prost", "prost-build", "std"]
std = []
[dependencies]
aes = "0.8"
bitvec = { version = "1", default-features = false }
bytes = { version = "1.1", optional = true }
cmac = "0.7"
crypto-common = "0.1"
ecdsa = "0.13"
generic-array = "0.14"
hmac = "0.12"
log = "0.4"
# This brings std with default-features
p256 = { version = "0.10", features = ["ecdsa"], default-features = false }
prost = { version = "0.9", optional = true }
# These two bring std with default-features
sha2 = { version = "0.10", default-features = false }
sha3 = { version = "0.10", default-features = false }
typenum = "1.15"
[build-dependencies]
prost-build = { version = "0.9", optional = true }
[dev-dependencies]
hex-literal = "0.3"
[package.metadata.docs.rs]
features = ["galmon"]