-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.05 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
[package]
name = "fog-pack"
version = "0.5.0"
authors = ["Scott Teal"]
readme = "README.md"
keywords = [ "fog-pack", "validator", "serialization", "deserialization" ]
categories = [ "encoding" ]
repository = "https://github.com/Cognoscan/fog-pack"
homepage = "https://github.com/Cognoscan/fog-pack"
documentation = "https://docs.rs/fog-pack"
license = "MIT OR Apache-2.0"
description = "Binary Data format supporting immutable references, schema, and compression"
exclude = [ "media/*", "misc_docs/*" ]
edition = "2021"
[features]
default = ["getrandom"]
getrandom = ["fog-crypto/getrandom"]
[dependencies]
fog-crypto = { version = "0.5.3", default-features = false, features = ["with-serde"] }
base64 = { version = "0.21.0" }
byteorder = "1"
regex = "1"
zstd-safe = "6"
bytecount = "0.6.0"
unicode-normalization = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
futures-core = "0.3"
pin-project-lite = "0.2"
[dev-dependencies]
rand = "0.8"
criterion = "0.5"
futures-executor = "0.3"
futures-util = "0.3"
[[bench]]
name = "log"
harness = false