File: Cargo.toml

package info (click to toggle)
rust-async-scoped 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: makefile: 2
file content (78 lines) | stat: -rw-r--r-- 1,701 bytes parent folder | download
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2018"
name = "async-scoped"
version = "0.9.0"
authors = ["Rajsekar Manokaran <rajsekar@gmail.com>"]
description = "Spawn scoped (non 'static) asynchronous futures for async_std and tokio runtimes"
homepage = "https://github.com/rmanoka/async-scoped"
documentation = "https://docs.rs/async-scoped"
readme = "README.md"
keywords = [
    "async",
    "async-std",
    "tokio",
    "scoped",
    "spawn",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "Apache-2.0/MIT"
repository = "https://github.com/rmanoka/async-scoped"

[package.metadata.docs.rs]
features = [
    "use-async-std",
    "use-tokio",
]

[[bench]]
name = "spawner"
path = "benches/spawner.rs"
harness = false

[dependencies.async-std]
version = "1.12.0"
optional = true

[dependencies.futures]
version = "0.3.15"

[dependencies.pin-project]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = [
    "rt-multi-thread",
    "macros",
    "sync",
]
optional = true

[dev-dependencies.async-std]
version = "1.12.0"
features = ["attributes"]

[dev-dependencies.femme]
version = "2.2.1"

[dev-dependencies.log]
version = "0.4.20"
features = ["kv_unstable"]

[features]
use-async-std = ["async-std"]
use-tokio = ["tokio"]