[package]
edition = "2021"
name = "gen-linkedin"
version = "0.1.3"
authors = ["jerusdp <jrussell@jerus.ie>"]
build = false
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal LinkedIn Posts API client for CI usage"
homepage = "https://github.com/jerus-org/pcu"
documentation = "https://docs.rs/gen-linkedin"
readme = "README.md"
keywords = [
"linkedin",
"api",
"client",
]
categories = ["api-bindings"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jerus-org/pcu"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["posts"]
oauth2 = []
posts = []
ugc = []
[lib]
name = "gen_linkedin"
path = "src/lib.rs"
[[test]]
name = "posts"
path = "tests/posts.rs"
[dependencies.reqwest]
version = "0.13.2"
features = ["json"]
default-features = false
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = [
"fs",
"macros",
"rt-multi-thread",
"macros",
"rt-multi-thread",
]
[dependencies.url]
version = "2.5.8"
features = ["serde"]
[dev-dependencies.serde_json]
version = "1.0.149"
[dev-dependencies.wiremock]
version = "0.6.5"
[lints.clippy]
uninlined-format-args = "warn"