-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 951 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
37
38
39
40
41
42
43
44
45
46
[package]
name = "peace-performance"
version = "0.4.0"
authors = ["MaxOhn <[email protected]>", "Pure-Peace <[email protected]>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Pure-Peace/peace-performance"
description = "osu! pp & stars calculation. Peace edition"
keywords = ["osu", "pp", "async", "async-std", "tokio"]
[features]
default = ["osu", "taiko", "fruits", "mania", "all_included", "async_tokio"]
score_v2_buff = []
ppysb_edition = []
relax_nerf = []
# game modes
osu = []
taiko = []
fruits = []
mania = []
# osu!standard version
all_included = []
no_leniency = []
no_sliders_no_leniency = []
# async version
async_std = ["async-std"]
async_tokio = ["tokio"]
[dependencies.async-std]
version = "1.9"
optional = true
[dependencies.tokio]
version = "1.9.0"
optional = true
default-features = false
features = ["io-util"]
[dev-dependencies.tokio]
version = "1.9.0"
features = ["fs", "rt"]