-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge branch 'master' into UnitTests
Showing
4 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
# tmflib | ||
# TMFLib | ||
 | ||
|
||
Rust Library to interact with v4 TMForum APIs. v5 support coming. | ||
## TMF Library for Rust | ||
### Description | ||
This library covers data structures required to interact with various TMForum APIs. | ||
It does not define any persistence nor provide a REST interface (at this stage) | ||
but simply provides definitions of all the schema and helpful functions and traits to create and maniuplate compliant objects | ||
that can then be seriliased into or from JSON as required. | ||
|
||
### API Version Features | ||
By default this crate will compile v4 versions of APIs. | ||
* **v4** | ||
This is the default version compiled | ||
* **v5** | ||
This flag can optionally be enabled to compile v5 APIs where available |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tmflib-derive" | ||
version = "0.1.26" | ||
version = "0.1.27" | ||
edition = "2021" | ||
authors = ["Ryan Ruckley <[email protected]>"] | ||
description = "Derive macro for the tmflib::HasId trait" | ||
|
@@ -13,4 +13,4 @@ proc-macro = true | |
[dependencies] | ||
proc-macro2 = "1.0.86" | ||
quote = "1.0.36" | ||
syn = "2.0.70" | ||
syn = "2.0.72" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters