Prototype API (#1)

* Add oauth2 client

* Update LICENSE.txt

* Create .env.example

* Add dotenv to example

* Add oauth2 types

* Update lib.rs

* Update Cargo.toml

* Update lib.rs

* Add games routes
This commit is contained in:
Guilherme Werner
2023-12-24 08:23:10 -03:00
committed by GitHub
parent 92d5adc03b
commit 21daa668f8
14 changed files with 472 additions and 22 deletions

View File

@ -1,24 +1,31 @@
[package]
name = "tribufu"
version = "0.0.3"
description = "TribuFu SDK"
repository = "https://github.com/TribuFu/SDK-RS"
authors = ["TribuFu <contact@tribufu.com>"]
version = "0.0.4"
description = "Tribufu SDK"
repository = "https://github.com/Tribufu/SDK-Rust"
authors = ["Tribufu <contact@tribufu.com>"]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
publish = true
exclude = [
".github/",
".vscode/",
".editorconfig",
".gitattributes",
]
exclude = [".github/", ".vscode/", ".editorconfig", ".gitattributes"]
[lib]
name = "TribuFu"
name = "tribufu"
crate-type = ["rlib"]
path = "Source/lib.rs"
path = "src/lib.rs"
[dependencies]
alnilam-consts = { version = "0.0.4" }
anyhow = "1.0.75"
chrono = { version = "0.4.22", features = ["serde", "rustc-serialize"] }
derive_more = "0.99.17"
reqwest = { version = "0.11.18", features = ["json", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
serde_with = "3.4.0"
[dev-dependencies]
dotenv = "0.15.0"
tokio = { version = "1", features = ["full"] }