-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 936 Bytes
/
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
# Copyright John Nunley, 2022.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE or copy at
# https://www.boost.org/LICENSE_1_0.txt)
[package]
name = "breadx-image"
version = "0.1.0"
edition = "2018"
authors = ["notgull <[email protected]>"]
description = "Image type to be used in breadx"
license = "BSL-1.0"
homepage = "https://github.com/bread-graphics/breadx-image#readme"
repository = "https://github.com/bread-graphics/breadx-image"
[dependencies]
breadx = { version = "3", default-features = false }
bytemuck = "1.9.1"
tracing = { version = "0.1.34", default-features = false }
[dev-dependencies]
criterion = "0.3.5"
fastrand = "1.7.0"
image = "0.24"
tracing-subscriber = "0.3.11"
[features]
default = ["std"]
std = ["breadx/std"]
async = ["breadx/async"]
[[bench]]
name = "benchmarks"
harness = false
[package.metadata.docs.rs]
all-features = true