-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
47 lines (42 loc) · 1.2 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
[package]
name = "dyon"
version = "0.49.1"
edition = "2021"
authors = ["Sven Nilsen <[email protected]>"]
keywords = ["script", "scripting", "game", "language", "piston"]
description = "A rusty dynamically typed scripting language"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/pistondevelopers/dyon.git"
homepage = "https://github.com/pistondevelopers/dyon"
exclude = ["images/*"]
[dependencies]
piston_meta = "2.0.0"
range = "1.0.0"
read_color = "1.0.0"
read_token = "1.0.0"
lazy_static = "1.0.0"
vecmath = "1.0.0"
advancedresearch-tree_mem_sort = "0.2.0"
tokio = {version = "1.34.0", features = ["full"], optional = true}
[target.'cfg(not(target_family = "wasm"))'.dependencies.reqwest]
version = "0.9.22"
default-features = false
optional = true
[target.'cfg(not(target_family = "wasm"))'.dependencies.rand]
version = "0.6.1"
default-features = true
optional = true
[target.'cfg(target_family = "wasm")'.dependencies.rand]
version = "0.6.1"
default-features = false
optional = true
[features]
default = ["debug_resolve", "http", "dynload", "file", "threading", "stdio", "rand"]
dynload = []
debug_resolve = []
http = ["reqwest"]
file = []
threading = []
stdio = []
async = ["tokio"]