-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
53 lines (48 loc) · 1.29 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
[package]
name = "sulis"
version = "1.0.0"
authors = ["Jared Stephen <grok_moo@yahoo.com>"]
license = "GPLv3"
description = "An RPG with Turn Based Combat"
repository = "https://github.com/Grokmoo/sulis"
edition = "2021"
[workspace]
members = [
"sulis_core",
"sulis_editor",
"sulis_module",
"sulis_state",
"sulis_view",
]
[workspace.lints.clippy]
assigning_clones = "allow"
type_complexity = "allow"
map_clone = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
manual_range_contains = "allow"
[workspace.dependencies]
base64 = "0.22"
chrono = "0.4"
home = "0.5"
flexi_logger = { version = "0.29", default-features = false }
glium = "0.36"
glutin-winit = "0.5"
image = { version = "0.25", default-features = false, features = [ "png" ] }
indexmap = "2"
lazy_static = "1"
log = { version = "0.4", features = [ "serde" ] }
open = "5"
rand = "0.8"
rand_pcg = { version = "0.3", features = [ "serde1" ] }
rlua = "0.19"
rodio = { version = "0.20", default-features = false, features = [ "vorbis" ] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1"
[dependencies]
sulis_core = { path = "sulis_core" }
sulis_module = { path = "sulis_module" }
sulis_state = { path = "sulis_state" }
sulis_view = { path = "sulis_view" }
log = { workspace = true }