-
Notifications
You must be signed in to change notification settings - Fork 45
/
Cargo.toml
47 lines (41 loc) · 1.31 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
45
46
47
[package]
name = "speedy"
version = "0.8.7"
authors = ["Jan Bujak <[email protected]>"]
repository = "https://github.com/koute/speedy"
homepage = "https://github.com/koute/speedy"
documentation = "https://docs.rs/speedy/*/speedy/"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["serialization"]
categories = ["encoding"]
description = "A fast binary serialization framework"
edition = "2018"
[dependencies]
memoffset = "0.9"
speedy-derive = { version = "= 0.8.7", path = "speedy-derive", optional = true }
chrono = { version = "0.4", optional = true }
glam = { version = ">= 0.15, <= 0.29", optional = true }
smallvec = { version = "1", optional = true }
regex = { version = "1", optional = true, default-features = false }
uuid = {version = "1", optional = true, default-features = false }
indexmap_v1 = { package = "indexmap", version = "1", optional = true }
indexmap_v2 = { package = "indexmap", version = "2", optional = true }
[dev-dependencies]
quickcheck = "1"
paste = "1"
tempfile = "3"
[profile.release]
panic = "abort"
[workspace]
members = [".", "speedy-derive", "static-tests"]
[features]
default = ["speedy-derive", "std"]
external_doc = []
indexmap_v1 = ["dep:indexmap_v1"]
indexmap_v2 = ["dep:indexmap_v2"]
indexmap = ["indexmap_v1"]
std = ["alloc"]
alloc = []
[package.metadata.docs.rs]
features = ["external_doc"]