mirror of
https://github.com/tribufu/tribufu-rust
synced 2026-05-06 06:47:28 +00:00
Update project
This commit is contained in:
parent
eb941fe530
commit
6851484a3f
5 changed files with 10 additions and 26 deletions
|
|
@ -1,2 +1,2 @@
|
||||||
[build]
|
[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
|
* text=auto eol=lf
|
||||||
|
|
|
||||||
13
.gitignore
vendored
13
.gitignore
vendored
|
|
@ -1,11 +1,6 @@
|
||||||
# Binary Files
|
[Bb]inaries/
|
||||||
|
[Ii]ntermediate/
|
||||||
Binaries/
|
|
||||||
|
|
||||||
# Cargo Files
|
|
||||||
|
|
||||||
Cargo.lock
|
|
||||||
|
|
||||||
# Mac OSX
|
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
Cargo.lock
|
||||||
|
desktop.ini
|
||||||
|
|
|
||||||
14
Cargo.toml
14
Cargo.toml
|
|
@ -1,28 +1,24 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tribufu"
|
name = "tribufu"
|
||||||
version = "0.0.2"
|
version = "0.0.3"
|
||||||
description = "TribuFu SDK"
|
description = "TribuFu SDK"
|
||||||
repository = "https://github.com/TribuFu/SDK"
|
repository = "https://github.com/TribuFu/SDK-RS"
|
||||||
authors = ["TribuFu <contact@tribufu.com>"]
|
authors = ["TribuFu <contact@tribufu.com>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
edition = "2018"
|
edition = "2021"
|
||||||
publish = true
|
publish = true
|
||||||
|
|
||||||
exclude = [
|
exclude = [
|
||||||
".github/",
|
".github/",
|
||||||
".vscode/",
|
".vscode/",
|
||||||
"Documentation/",
|
|
||||||
".editorconfig",
|
".editorconfig",
|
||||||
".gitattributes",
|
".gitattributes",
|
||||||
"*.code-workspace",
|
|
||||||
"Bootstrap.ps1",
|
|
||||||
"Bootstrap.sh",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name="TribuFu"
|
name = "TribuFu"
|
||||||
crate-type = ["rlib"]
|
crate-type = ["rlib"]
|
||||||
path = "Source/TribuFu.rs"
|
path = "Source/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,5 @@
|
||||||
// Copyright (c) TribuFu. All Rights Reserved
|
// Copyright (c) TribuFu. All Rights Reserved
|
||||||
|
|
||||||
//! TribuFu SDK.
|
|
||||||
|
|
||||||
#![allow(non_snake_case)]
|
#![allow(non_snake_case)]
|
||||||
|
|
||||||
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
pub fn Hello(input: String) -> String {
|
|
||||||
return format!("Hello {}", input);
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue