sync_docs 0.2.0

This proc macro allows injecting documentation from prost generated Rust file into custom defined sdk types (s2-sdk-rust in this case)
Documentation
1
2
3
4
5
6
7
8
9
10
# sync_docs

This proc macro allows us to inject documentation from prost generated rust file into our sdk types, mainly beneficial to avoid having to 
duplicate the documentation.

In `build.rs` of your repository, specify filename of the generated rust file.

```rs
println!("cargo:rustc-env=COMPILED_PROST_FILE=s2.v1alpha.rs");
```