mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
0e316239dd
* app compiles with every ee substituted
* Replace all oss files content
* Revert "Replace all oss files content"
This reverts commit ea4017d59f.
* delete all ee
* hide all _ee files under private flag
* hide every oss stuff when private flag set
* pub use *
* gitignore and substitute script
* pub mod for ee needed for ee repo
* small mistakes
* remove oidc_oss impl
* ee ref (temp)
* ee ref
* fix --all-features selecting private in OSS CI
* ee repo ref
* allow unused
24 lines
528 B
TOML
24 lines
528 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 = []
|
|
enterprise = ["windmill-queue/enterprise", "windmill-common/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
|
|
regex = "1.10.3" |