Create initial api wrapper (#2)

* Api v0.1?

* Split crates

* Update api
This commit is contained in:
Guilherme Werner
2023-12-31 15:26:24 -03:00
committed by GitHub
parent 21daa668f8
commit f63f64103c
18 changed files with 607 additions and 237 deletions

23
src/types/Cargo.toml Normal file
View File

@ -0,0 +1,23 @@
[package]
name = "tribufu-types"
version = "0.0.4"
description = "Tribufu Types"
repository = "https://github.com/Tribufu/TribufuRust"
authors = ["Tribufu <contact@tribufu.com>"]
license = "Apache-2.0"
readme = "README.md"
edition = "2021"
publish = true
[lib]
name = "tribufu_types"
crate-type = ["rlib"]
path = "lib.rs"
[dependencies]
chrono = { version = "0.4.22", features = ["serde", "rustc-serialize"] }
derive_more = "0.99.17"
mintaka-error = { version = "0.0.1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
serde_with = "3.4.0"