forked from osuAkatsuki/akatsuki-pp-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 868 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 = "titanic-pp"
version = "0.0.5"
authors = ["MaxOhn <ohn.m@hotmail.de>", "tsunyoku <tsunyoku@gmail.com>", "Lekuruu <contact@lekuru.xyz>", "kanaarima <akataltosu@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/osuTitanic/titanic-pp-rs"
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