mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
38ac8de377
* chore(main): release 1.60.0 * Update CHANGELOG.md * Apply automatic changes Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
143 lines
3.8 KiB
TOML
143 lines
3.8 KiB
TOML
[package]
|
|
name = "windmill"
|
|
version = "1.60.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[workspace]
|
|
members = [
|
|
"./windmill-api",
|
|
"./windmill-queue",
|
|
"./windmill-worker",
|
|
"./windmill-common",
|
|
"./windmill-audit",
|
|
"./windmill-api-client",
|
|
"./parsers/windmill-parser",
|
|
"./parsers/windmill-parser-ts",
|
|
"./parsers/windmill-parser-go",
|
|
"./parsers/windmill-parser-py",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "1.60.0"
|
|
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "windmill"
|
|
path = "./src/main.rs"
|
|
|
|
[features]
|
|
enterprise = ["windmill-worker/enterprise", "windmill-queue/enterprise", "windmill-api/enterprise"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
dotenv.workspace = true
|
|
windmill-common = { workspace = true, features = ["tracing_init"] }
|
|
windmill-api.workspace = true
|
|
windmill-api-client.workspace = true
|
|
windmill-worker.workspace = true
|
|
futures.workspace = true
|
|
tracing.workspace = true
|
|
sqlx.workspace = true
|
|
tokio-metrics.workspace = true
|
|
rand.workspace = true
|
|
chrono.workspace = true
|
|
git-version.workspace = true
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
windmill-queue.workspace = true
|
|
axum.workspace = true
|
|
|
|
[workspace.dependencies]
|
|
windmill-api = { path = "./windmill-api" }
|
|
windmill-api-client = { path = "./windmill-api-client" }
|
|
windmill-queue = { path = "./windmill-queue" }
|
|
windmill-worker = { path = "./windmill-worker" }
|
|
windmill-common = { path = "./windmill-common" }
|
|
windmill-audit = { path = "./windmill-audit" }
|
|
windmill-parser = { path = "./parsers/windmill-parser" }
|
|
windmill-parser-ts = { path = "./parsers/windmill-parser-ts" }
|
|
windmill-parser-py = { path = "./parsers/windmill-parser-py" }
|
|
windmill-parser-go = { path = "./parsers/windmill-parser-go" }
|
|
windmill-parser-bash = { path = "./parsers/windmill-parser-bash" }
|
|
axum = { version = "^0", features = ["headers"] }
|
|
headers = "^0"
|
|
hyper = { version = "^0", features = ["full"] }
|
|
tokio = { version = "^1", features = ["full", "tracing"] }
|
|
tower = "^0"
|
|
tower-http = { version = "^0", features = ["trace"] }
|
|
tower-cookies = "^0"
|
|
serde = "^1"
|
|
serde_json = { version = "^1", features = ["preserve_order"] }
|
|
uuid = { version = "^1", features = ["serde", "v4"] }
|
|
thiserror = "^1"
|
|
anyhow = "^1"
|
|
chrono = { version = "^0", features = ["serde"] }
|
|
tracing = "^0"
|
|
tracing-subscriber = { version = "^0", features = ["env-filter", "json"] }
|
|
prometheus = { version = "^0", default-features = false }
|
|
cookie = { version = "^0" }
|
|
phf = { version = "0.11", features = ["macros"] }
|
|
rust-embed = "^6"
|
|
mime_guess = "^2"
|
|
hex = "^0"
|
|
sql-builder = "^3"
|
|
argon2 = "^0"
|
|
retainer = "^0"
|
|
rand = "0.8.5"
|
|
rand_core = { version = "^0", features = ["std"] }
|
|
magic-crypt = "^3"
|
|
git-version = "^0"
|
|
rustpython-parser = { git = "https://github.com/RustPython/RustPython" }
|
|
cron = "^0"
|
|
lettre = { version = "^0", features = [
|
|
"rustls-tls",
|
|
"tokio1",
|
|
"tokio1-rustls-tls",
|
|
"builder",
|
|
"smtp-transport",
|
|
], default-features = false }
|
|
urlencoding = "^2"
|
|
url = "^2"
|
|
async-oauth2 = "^0"
|
|
reqwest = { version = "^0", features = ["json"] }
|
|
time = "0.3.16"
|
|
serde_urlencoded = "^0"
|
|
tokio-tar = "^0"
|
|
tempfile = "^3"
|
|
tokio-util = { version = "^0", features = ["io"] }
|
|
json-pointer = "^0"
|
|
itertools = "^0"
|
|
regex = "^1"
|
|
deno_core = "^0"
|
|
async-recursion = "^1"
|
|
swc_common = "^0"
|
|
swc_ecma_parser = "^0"
|
|
swc_ecma_ast = "^0"
|
|
base64 = "^0"
|
|
unicode-general-category = "^0"
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.6"
|
|
sqlx = { version = "^0", features = [
|
|
"offline",
|
|
"macros",
|
|
"migrate",
|
|
"uuid",
|
|
"json",
|
|
"chrono",
|
|
"postgres",
|
|
"runtime-tokio-rustls",
|
|
] }
|
|
dotenv = "^0"
|
|
ulid = { version = "^1", features = ["uuid"] }
|
|
futures = "^0"
|
|
tokio-metrics = "0.1.0"
|
|
lazy_static = "1.4.0"
|
|
serde_derive = "1.0.147"
|
|
const_format = { version = "0.2", features = ["rust_1_64", "rust_1_51"] }
|
|
dyn-iter = "0.2.0"
|