mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-15 18:54:19 +00:00
32 lines
832 B
TOML
32 lines
832 B
TOML
[package]
|
|
name = "tribufu"
|
|
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"]
|
|
|
|
[lib]
|
|
name = "tribufu"
|
|
crate-type = ["rlib"]
|
|
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"] }
|