diff options
Diffstat (limited to 'world/Cargo.toml')
-rw-r--r-- | world/Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/world/Cargo.toml b/world/Cargo.toml new file mode 100644 index 0000000..ee74e2b --- /dev/null +++ b/world/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "weareworld" +version = "0.1.0" +edition = "2024" + +[dependencies] +anyhow = "1.0.95" +clap = { version = "4.5.23", features = ["derive"] } +env_logger = "0.11.6" +gltf = { version = "1.4.1", features = ["extras", "names"] } +log = "0.4.22" +weareshared = { path = "../shared" } |