-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (45 loc) · 1.09 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[badges.appveyor]
repository = "kinggoesgaming/ore"
[badges.travis-ci]
repository = "pxlpowered/ore"
[dependencies]
chrono = "0.4"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dependencies.futures]
optional = true
version = "0.1"
[dependencies.hyper]
optional = true
version = "0.11"
[dependencies.hyper-tls]
optional = true
version = "0.1"
[dependencies.native-tls]
optional = true
version = "0.1"
[dependencies.tokio-core]
optional = true
version = "0.1"
[features]
hyper_tls_backend = ["futures", "hyper", "hyper-tls", "native-tls", "tokio-core"]
ore_v1 = []
[package]
authors = ["Hunar Roop Kahlon <[email protected]>"]
categories = ["api-bindings"]
description = "A library interacting with the Sponge Ore web API"
documentation = "https://docs.rs/ore/0.1.0"
exclude = ["appveyor.yml", "target", "version"]
keywords = ["ore", "sponge", "minecraft"]
license = "Apache-2.0/MIT"
name = "ore"
publish = false
readme = "README.md"
repository = "https://www.github.com/pxlpowered/ore"
# NOTE:
# * Change version in:
# * documentation field
# * lib.rs file
# * version file
version = "0.1.0"