Cargo.toml:
```toml [lib] name = "foo" crate-type = ["dylib"]
[dependencies] export_cstr = "*" ```
lib.rs:
```rust
// implicit #[allow(deadcode, nonuppercaseglobals)] export_cstr!(foo, "this becomes an exported symbol 'foo' which points to a constant, null-terminated, C string");
// ... ```