43 lines
1,001 B
TOML
43 lines
1,001 B
TOML
|
|
[package]
|
||
|
|
name = "n8n"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
rust-version = "1.75"
|
||
|
|
authors = ["Provctl Contributors"]
|
||
|
|
license = "MIT"
|
||
|
|
repository = "https://github.com/provctl"
|
||
|
|
|
||
|
|
description = "Comprehensive n8n project management and orchestration module"
|
||
|
|
documentation = "https://docs.rs/n8n"
|
||
|
|
keywords = ["n8n", "workflow", "automation", "infrastructure", "iac"]
|
||
|
|
categories = ["development-tools", "config"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1.0"
|
||
|
|
serde_yaml = "0.9"
|
||
|
|
toml = "0.9"
|
||
|
|
thiserror = "2"
|
||
|
|
anyhow = "1"
|
||
|
|
tracing = "0.1"
|
||
|
|
|
||
|
|
# HTTP client for n8n API
|
||
|
|
reqwest = { version = "0.11", features = ["json"] }
|
||
|
|
tokio = { version = "1", features = ["full"] }
|
||
|
|
|
||
|
|
# Time and scheduling
|
||
|
|
chrono = { version = "0.4", features = ["serde"] }
|
||
|
|
cron = "0.12"
|
||
|
|
|
||
|
|
# UUID generation
|
||
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
||
|
|
|
||
|
|
# Base64 encoding
|
||
|
|
base64 = "0.22"
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
proptest = "1"
|
||
|
|
tempfile = "3"
|
||
|
|
mockall = "0.14"
|
||
|
|
tokio = { version = "1", features = ["full"] }
|