-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 782 Bytes
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
[package]
name = "always_send"
version = "0.1.1"
authors = ["Frank Steffahn <fdsteffahn@gmail.com>"]
license = "MIT OR Apache-2.0"
description = """
Wrapper to check `Send` only on construction, so `rustc` isn’t confused later
"""
repository = "https://github.com/steffahn/always_send"
homepage = "https://github.com/steffahn/always_send"
documentation = "https://docs.rs/always_send"
keywords = []
categories = ["no-std"]
readme = "README.md"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
stream = ["dep:futures-core"]
[dependencies]
futures-core = { version = "0.3.31", default-features = false, optional = true}
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]