forked from osuAkatsuki/akatsuki-pp-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (31 loc) · 829 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
[package]
name = "akatsuki-pp"
version = "1.0.1"
authors = ["MaxOhn <[email protected]>", "tsunyoku <[email protected]>", "Aochi <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/osuAkatsuki/akatsuki-pp"
description = "osu! difficulty and pp calculation for all modes"
keywords = ["osu", "pp", "stars", "async"]
[features]
default = []
async_std = ["async-std"]
async_tokio = ["tokio"]
[dependencies.async-std]
version = "1.9"
optional = true
default-features = false
features = ["async-io", "std"]
[dependencies.tokio]
version = "1.2"
optional = true
default-features = false
features = ["fs", "io-util"]
[dev-dependencies.tokio]
version = "1.2"
default-features = false
features = ["fs", "rt"]
[dev-dependencies.async-std]
version = "1.9"
default-features = true