-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.47 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
[workspace]
resolver = "2"
members = [
"onlivfe",
"onlivfe_cache_store",
"onlivfe_db_store",
"onlivfe_net",
"onlivfe_wrapper",
]
[workspace.package]
version = "0.0.0-alpha.0"
edition = "2021"
authors = ["ljoonal"]
license = "AGPL-3.0-or-later"
homepage = "https://onlivfe.com"
repository = "https://github.com/onlivfe/core"
categories = ["games"]
keywords = ["onlivfe", "social_vr", "social_platform", "social_network", "social"]
[workspace.dependencies]
onlivfe = { version = "=0.0.0-alpha.0", path = "onlivfe" }
onlivfe_net = { version = "=0.0.0-alpha.0", path = "onlivfe_net" }
onlivfe_wrapper = { version = "=0.0.0-alpha.0", path = "onlivfe_wrapper" }
onlivfe_cache_store = { version = "=0.0.0-alpha.0", path = "onlivfe_cache_store" }
onlivfe_db_store= { version = "=0.0.0-alpha.0", path = "onlivfe_db_store" }
# Data mangling
serde = { version = "1.0.215" }
serde_with = { version = "3.11.0", features = ["time_0_3", "json"] }
time = { version = "0.3.37", features = ["serde-well-known"] }
strum = { version = "0.26.3" }
# Utility
log = "0.4"
tracing = "0.1"
futures = { version = "0.3" }
async-trait = "0.1"
tokio = "1"
# Platform specifics
#resonite = { version = "0.3.3", features = [], default-features = false }
resonite = { path = "../resonite_rs", features = [], default-features = false }
chilloutvr = { version = "0.6.0", features = [] }
#chilloutvr = { path = "../chilloutvr_rs", features = [] }
vrc = { version = "0.5.0", features = [] }
#vrc = { path = "../vrc_rs", features = [] }