2023-09-12 18:25:33 +00:00
|
|
|
[package]
|
|
|
|
name = "lyra-resource"
|
2023-09-12 23:07:03 +00:00
|
|
|
version = "0.0.1"
|
2023-09-12 18:25:33 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-04 16:33:35 +00:00
|
|
|
lyra-ecs = { path = "../lyra-ecs", features = [ "math" ] }
|
2024-03-10 05:11:15 +00:00
|
|
|
lyra-reflect = { path = "../lyra-reflect" }
|
2024-03-04 16:33:35 +00:00
|
|
|
lyra-math = { path = "../lyra-math" }
|
2024-03-31 04:32:31 +00:00
|
|
|
lyra-scene = { path = "../lyra-scene" }
|
2023-09-12 18:25:33 +00:00
|
|
|
anyhow = "1.0.75"
|
2023-09-22 03:11:09 +00:00
|
|
|
base64 = "0.21.4"
|
2024-01-15 23:07:47 +00:00
|
|
|
crossbeam = { version = "0.8.4", features = [ "crossbeam-channel" ] }
|
2023-09-22 03:11:09 +00:00
|
|
|
glam = "0.24.1"
|
2023-11-18 16:36:33 +00:00
|
|
|
gltf = { version = "1.3.0", features = ["KHR_materials_pbrSpecularGlossiness", "KHR_materials_specular"] }
|
2023-09-12 18:25:33 +00:00
|
|
|
image = "0.24.7"
|
2023-10-18 02:04:25 +00:00
|
|
|
# not using custom matcher, or file type from file path
|
|
|
|
infer = { version = "0.15.0", default-features = false }
|
|
|
|
mime = "0.3.17"
|
2024-01-15 23:07:47 +00:00
|
|
|
notify = "6.1.1"
|
2024-01-16 04:22:21 +00:00
|
|
|
notify-debouncer-full = "0.3.1"
|
2024-01-15 23:07:47 +00:00
|
|
|
#notify = { version = "6.1.1", default-features = false, features = [ "fsevent-sys", "macos_fsevent" ]} # disables crossbeam-channel
|
2023-09-22 03:11:09 +00:00
|
|
|
percent-encoding = "2.3.0"
|
2023-09-12 18:25:33 +00:00
|
|
|
thiserror = "1.0.48"
|
2023-10-05 15:42:24 +00:00
|
|
|
tracing = "0.1.37"
|
2023-09-12 18:25:33 +00:00
|
|
|
uuid = { version = "1.4.1", features = ["v4"] }
|
2024-03-09 05:25:13 +00:00
|
|
|
instant = "0.1"
|
|
|
|
async-std = "1.12.0"
|
2024-03-10 05:11:15 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rand = "0.8.5"
|