-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 1.03 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
[package]
name = "bytecon"
version = "0.1.14"
edition = "2021"
authors = ["Austin Heller"]
description = "A trait for easily converting to-and-from an array of bytes."
readme = "README.md"
repository = "https://github.com/AustinHellerRepo/bytecon"
license = "MIT OR Apache-2.0"
keywords = ["encoding", "trait", "serialization", "networking", "streaming"]
categories = ["encoding"]
[features]
default = []
burn = ["dep:burn"]
burn_dtype = ["dep:burn"]
tokio = ["dep:tokio", "dep:tokio-rustls"]
bincode = ["dep:bincode", "dep:serde"]
rand = ["dep:rand", "dep:rand_chacha"]
rustls = ["dep:rustls"]
[dependencies]
thiserror = { version = "2" }
paste = { version = "1" }
burn = { version = "0.14", optional = true }
tokio = { version = "1", features = ["full"], optional = true }
tokio-rustls = { version = "0.23", optional = true }
rustls = { version = "0.21", optional = true }
bincode = { version = "1", optional = true }
serde = { version = "1", optional = true }
rand = { version = "0.8", optional = true }
rand_chacha = { version = "0.3", optional = true }