[package]
edition = "2024"
rust-version = "1.88"
name = "origin-connector"
version = "0.2.0"
authors = ["Jörn Seidel <joern.seidel@casoon.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The connector contract for Origin: what an external service integration must declare and support."
homepage = "https://casoon.dev"
readme = "README.md"
keywords = [
"tauri",
"connector",
"integration",
"contract",
]
categories = [
"api-bindings",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/casoon/origin"
[features]
default = []
ts = [
"dep:ts-rs",
"origin-domain/ts",
]
[lib]
name = "origin_connector"
path = "src/lib.rs"
[dependencies.async-trait]
version = "0.1.92"
[dependencies.origin-domain]
version = "0.2.0"
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.ts-rs]
version = "12.0"
optional = true
[dev-dependencies.tokio]
version = "1.53"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"rt-multi-thread",
"macros",
]
[lints.clippy]
dbg_macro = "warn"
print_stdout = "warn"
todo = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"