generated from opensound-org/template-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (35 loc) · 1.32 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
[package]
name = "est"
authors = ["29 <791603901@qq.com>"]
version = "0.7.1"
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["std", "anyhow", "result", "collections", "indexmap"]
categories = ["algorithms", "asynchronous", "data-structures", "memory-management", "rust-patterns"]
repository = "https://github.com/opensound-org/est"
homepage = "https://github.com/opensound-org/est"
description = """
Extensions for the rust Standard library and Tokio.
"""
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# Because we used `rustc-check-cfg` in build script
# 因为我们在构建脚本中使用了`rustc-check-cfg`
# https://blog.rust-lang.org/2024/05/06/check-cfg.html
rust-version = "1.80.0"
[package.metadata.docs.rs]
all-features = true
[dependencies]
anyhow = "1.0.95"
derive_more = { version = "1.0.0", features = ["display"] }
indexmap = "2.7.1"
ron = "0.8.1"
serde = { version = "1.0.217", features = ["derive"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["rt", "sync"] }
tokio-util = { version = "0.7.13", features = ["rt"] }
[dev-dependencies]
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "test-util", "time"] }
tokio-util = { version = "0.7.13", features = ["time"] }
[build-dependencies]
version_check = "0.9.5"