-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (31 loc) · 1.06 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
[package]
name = "page-turner"
version = "1.0.0"
authors = ["a1akris <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.75"
description = "A generic abstraction of APIs with pagination"
readme = "README.md"
repository = "https://github.com/a1akris/page-turner"
documentation = "https://docs.rs/page-turner"
keywords = ["pagination", "paginated", "pageturner", "pages", "page-turner"]
categories = ["rust-patterns", "asynchronous", "web-programming", "network-programming", "concurrency"]
exclude = [
".github/*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["mt"]
local = []
mt = []
mutable = ["local"]
dynamic = ["mt", "async-trait"]
[dependencies]
async-trait = { version = "0.1.77", optional = true }
futures = { version = "0.3.30", default_features = false, features = ["std"] }
[dev-dependencies]
tokio = { version = "1", features = ["test-util", "macros", "rt-multi-thread"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]