Remove useless dependency on rand crate

This commit is contained in:
Alex 2022-11-23 11:09:27 +01:00
parent 335d18bfbc
commit ca335ab3fc
Signed by: lx
GPG key ID: 0E496D15096376BE

View file

@ -2,7 +2,7 @@
name = "nettext" name = "nettext"
description = "A text-based data format for cryptographic network protocols" description = "A text-based data format for cryptographic network protocols"
authors = ["Alex Auvolat <alex@adnab.me>"] authors = ["Alex Auvolat <alex@adnab.me>"]
version = "0.2.0" version = "0.2.1"
edition = "2021" edition = "2021"
license = "AGPL-3.0" license = "AGPL-3.0"
readme = "README.md" readme = "README.md"
@ -13,7 +13,6 @@ readme = "README.md"
nom = "7.1" nom = "7.1"
base64 = "0.13" base64 = "0.13"
rand = "0.7"
dryoc = { version = "0.4", optional = true } dryoc = { version = "0.4", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] } serde = { version = "1.0", optional = true, features = ["derive"] }