mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
46 lines
936 B
TOML
46 lines
936 B
TOML
[package]
|
|
name = "tribufu"
|
|
version = "0.0.1"
|
|
description = "TribuFu SDK"
|
|
repository = "https://github.com/TribuFu/SDK"
|
|
authors = ["TribuFu <contact@tribufu.com>"]
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
publish = true
|
|
|
|
exclude = [
|
|
".cargo/",
|
|
".github/",
|
|
".vscode/",
|
|
"Config/",
|
|
"Documentation/",
|
|
"Examples/C",
|
|
"Examples/Cpp",
|
|
"Examples/CSharp",
|
|
"Scripts/",
|
|
"Vendor/",
|
|
".editorconfig",
|
|
".gitattributes",
|
|
".gitmodules",
|
|
"GenerateProjectFiles.*",
|
|
"premake5.lua",
|
|
"*.code-workspace",
|
|
]
|
|
|
|
[lib]
|
|
name="TribuFu"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
path = "Source/TribuFu.rs"
|
|
|
|
[dependencies]
|
|
libc = "0.2.0"
|
|
tokio = { version = "1.2.0", features = ["full"] }
|
|
reqwest = { version = "0.11.1", features = ["blocking", "json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
|
|
[[example]]
|
|
name="Hello"
|
|
path = "Examples/Rust/Hello.rs"
|