-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 748 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) · 748 Bytes
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
[package]
name = "oxirush-nas"
version = "0.3.0"
edition = "2024"
description = "5G NAS (Non-Access Stratum) message encoder/decoder library per 3GPP TS 24.501"
keywords = ["5g", "nas", "3gpp", "telecom", "codec"]
categories = ["network-programming", "encoding", "parser-implementations"]
readme = "README.md"
[features]
default = []
security = ["dep:oxirush-security"]
serde = ["dep:serde"]
[dependencies]
bytes = "1.5"
byteorder = "1.5"
thiserror = "2.0.1"
log = "0.4"
hex = "0.4"
base64 = "0.22.1"
anyhow = "1.0.96"
paste = "1"
# Optional: NAS security envelope (integrity + ciphering)
oxirush-security = { version = "0.1.0", optional = true }
# Optional: JSON serialization
serde = { version = "1", features = ["derive"], optional = true }