mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-21 00:02:30 +00:00
28 lines
787 B
TOML
28 lines
787 B
TOML
[package]
|
|
name = "windmill-git-sync"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "windmill_git_sync"
|
|
path = "./src/lib.rs"
|
|
|
|
[features]
|
|
private = ["windmill-common/private", "windmill-dep-map/private", "windmill-audit/private"]
|
|
enterprise = ["windmill-queue/enterprise", "windmill-common/enterprise", "windmill-audit/enterprise"]
|
|
all_sqlx_features = ["enterprise"]
|
|
default = []
|
|
|
|
[dependencies]
|
|
uuid.workspace = true
|
|
serde.workspace = true
|
|
sqlx.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
windmill-common = { workspace = true, default-features = false }
|
|
windmill-queue.workspace = true
|
|
windmill-dep-map.workspace = true
|
|
windmill-audit.workspace = true
|
|
regex = "1.10.3"
|
|
tokio = { workspace = true, features = ["full"] } |