mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 10:44:18 +00:00
Update project
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
[build]
|
||||
target-dir = "Binaries"
|
||||
target-dir = "Intermediate/Target"
|
||||
|
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1,2 +1 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto eol=lf
|
||||
|
13
.gitignore
vendored
13
.gitignore
vendored
@ -1,11 +1,6 @@
|
||||
# Binary Files
|
||||
|
||||
Binaries/
|
||||
|
||||
# Cargo Files
|
||||
|
||||
Cargo.lock
|
||||
|
||||
# Mac OSX
|
||||
[Bb]inaries/
|
||||
[Ii]ntermediate/
|
||||
|
||||
.DS_Store
|
||||
Cargo.lock
|
||||
desktop.ini
|
||||
|
14
Cargo.toml
14
Cargo.toml
@ -1,28 +1,24 @@
|
||||
[package]
|
||||
name = "tribufu"
|
||||
version = "0.0.2"
|
||||
version = "0.0.3"
|
||||
description = "TribuFu SDK"
|
||||
repository = "https://github.com/TribuFu/SDK"
|
||||
repository = "https://github.com/TribuFu/SDK-RS"
|
||||
authors = ["TribuFu <contact@tribufu.com>"]
|
||||
license = "Apache-2.0"
|
||||
readme = "README.md"
|
||||
edition = "2018"
|
||||
edition = "2021"
|
||||
publish = true
|
||||
|
||||
exclude = [
|
||||
".github/",
|
||||
".vscode/",
|
||||
"Documentation/",
|
||||
".editorconfig",
|
||||
".gitattributes",
|
||||
"*.code-workspace",
|
||||
"Bootstrap.ps1",
|
||||
"Bootstrap.sh",
|
||||
]
|
||||
|
||||
[lib]
|
||||
name="TribuFu"
|
||||
name = "TribuFu"
|
||||
crate-type = ["rlib"]
|
||||
path = "Source/TribuFu.rs"
|
||||
path = "Source/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
|
@ -1,11 +1,5 @@
|
||||
// Copyright (c) TribuFu. All Rights Reserved
|
||||
|
||||
//! TribuFu SDK.
|
||||
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||
|
||||
pub fn Hello(input: String) -> String {
|
||||
return format!("Hello {}", input);
|
||||
}
|
Reference in New Issue
Block a user