This message was deleted.
# sdk-rust
s
This message was deleted.
b
Hey, I forgot to document that, but you need to clone the repository recursively 🙂 You can run:
Copy code
git submodule update --init --recursive
There’s no release yet for the latest features but the protocol files will be directly included inside the crate in the future
i
Thanks a lot @boundless-energy-78552 🙏
🙏 1
Also for the proto3 optional field issue.. should I be on a particular version of protoc?
Copy code
Caused by:
  process didn't exit successfully: `/home/ggovindan/spotai/client-sdk-rust/target/debug/build/livekit-protocol-0c038c2d4c54ff2a/build-script-build` (exit status: 1)
  --- stderr
  Error: Custom { kind: Other, error: "protoc failed: livekit_room.proto: This file contains proto3 optional fields, but --experimental_allow_proto3_optional was not set.\n" }
Thanks a lot!
b
yes, when using the protobuf-compiler from the ubuntu repo, it doesn’t support optional fields. I recommend you to download the latest version here
i
Thanks!