added faction tag
This commit is contained in:
parent
c320036cd0
commit
fee278e895
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "torn-api"
|
name = "torn-api"
|
||||||
version = "0.6.0"
|
version = "0.6.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Pyrit [2111649]"]
|
authors = ["Pyrit [2111649]"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -76,6 +76,9 @@ pub struct Basic<'a> {
|
||||||
pub capacity: i16,
|
pub capacity: i16,
|
||||||
pub best_chain: i32,
|
pub best_chain: i32,
|
||||||
|
|
||||||
|
#[serde(deserialize_with = "de_util::empty_string_is_none")]
|
||||||
|
pub tag_image: Option<&'a str>,
|
||||||
|
|
||||||
#[serde(borrow)]
|
#[serde(borrow)]
|
||||||
pub members: BTreeMap<i32, Member<'a>>,
|
pub members: BTreeMap<i32, Member<'a>>,
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ tokio-runtime = [ "dep:tokio", "dep:rand" ]
|
||||||
actix-runtime = [ "dep:actix-rt", "dep:rand" ]
|
actix-runtime = [ "dep:actix-rt", "dep:rand" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
torn-api = { path = "../torn-api", default-features = false, version = "0.5.10" }
|
torn-api = { path = "../torn-api", default-features = false, version = "0.6" }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue