mirror of
https://github.com/tribufu/tribufu-rust
synced 2026-06-01 09:42:37 +00:00
Merge Rust, C and C++ SDKs (#4)
* Generate native bindings from rust crate * Add native instance and runtime statics * Update README.md
This commit is contained in:
parent
738f9c947b
commit
a392dbb119
39 changed files with 1213 additions and 24 deletions
14
.cargo/config.toml
Normal file
14
.cargo/config.toml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
[build]
|
||||
rustflags = ["--cfg", "uuid_unstable"]
|
||||
|
||||
[profile.dev]
|
||||
lto = "off"
|
||||
|
||||
[profile.release]
|
||||
lto = "thin"
|
||||
|
||||
[target.'cfg(target_os = "windows")']
|
||||
rustflags = ["-C", "target-feature=+crt-static"]
|
||||
|
||||
[target.'cfg(target_family = "wasm")']
|
||||
rustflags = ["--cfg", "web_sys_unstable_apis"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue