forked from jordan4ibanez/minetest-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (67 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "minetest-rust"
version = "0.0.1"
edition = "2021"
authors = ["jordan4ibanez", "for the moment"]
# Always use the latest stable rust version in this project.
# You can update your rust version with: rustup update stable
rust-version = "1.75.0"
# Fixes for Windows.
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
# DO NOT allow unsafe code.
unsafe_code = "forbid"
# These can be turned on and off for active development.
dead_code = "allow"
unused_variables = "allow"
[lints.clippy]
# These ones are REALLY annoying.
unwrap_used = "warn"
panicking_unwrap = "warn"
expect_used = "warn"
[dependencies]
ahash = "*"
bytemuck = { version = "*", features = ["derive"] }
clap = { version = "*", features = ["derive"] }
configparser = "*"
ctrlc = { version = "*", features = ["termination"] }
env_logger = "*"
glam = { version = "*", features = ["approx", "bytemuck", "rand", "serde"] }
gltf = "*"
image = { version = "*", default-features = false, features = [
"png",
"jpeg",
"webp",
] }
log = "*"
message-io = "*"
minetest-gltf = { version = "*", features = ["names"] }
mlua = { version = "*", features = ["luau-jit"] }
pollster = "*"
quote = "*"
rand = "*"
rusqlite = "*"
sdl2 = { version = "*", features = [
"raw-window-handle",
"bundled",
"static-link",
] }
sea-query = { version = "*", features = [
"backend-sqlite",
"with-time",
"with-json",
"with-uuid",
] }
serde = { version = "*", features = ["derive"] }
serde_bytes = "*"
spin_sleep = "*"
spin_sleep_util = "*"
syn = "*"
tobj = "*"
unique_64 = "*"
wgpu = "*"
wgpu_sdl_linker = "*"
# Specialty dependencies.
[target.'cfg(windows)'.build-dependencies]
winres = "*"