mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
611024aa60
* chore(main): release 1.168.3 * Apply automatic changes --------- Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
193 lines
5.5 KiB
TOML
193 lines
5.5 KiB
TOML
[package]
|
|
name = "windmill"
|
|
version = "1.168.3"
|
|
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-wasm",
|
|
"./parsers/windmill-parser-go",
|
|
"./parsers/windmill-parser-bash",
|
|
"./parsers/windmill-parser-py",
|
|
"./parsers/windmill-parser-py-imports",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "1.168.3"
|
|
authors = ["Ruben Fiszel <ruben@windmill.dev>"]
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "windmill"
|
|
path = "./src/main.rs"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
incremental = true
|
|
|
|
[features]
|
|
enterprise = ["windmill-worker/enterprise", "windmill-queue/enterprise", "windmill-api/enterprise"]
|
|
benchmark = ["windmill-api/benchmark", "windmill-worker/benchmark", "windmill-queue/benchmark"]
|
|
flamegraph = ["windmill-common/flamegraph", "windmill-worker/flamegraph"]
|
|
|
|
[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
|
|
rsa.workspace = true
|
|
base64.workspace = true
|
|
sha2.workspace = true
|
|
rsmq_async.workspace = true
|
|
url.workspace = true
|
|
lazy_static.workspace = true
|
|
once_cell.workspace = true
|
|
prometheus.workspace = true
|
|
uuid.workspace = true
|
|
gethostname.workspace = true
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
windmill-queue.workspace = true
|
|
axum.workspace = true
|
|
serde.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-py-imports = { path = "./parsers/windmill-parser-py-imports" }
|
|
windmill-parser-go = { path = "./parsers/windmill-parser-go" }
|
|
windmill-parser-bash = { path = "./parsers/windmill-parser-bash" }
|
|
windmill-parser-sql = { path = "./parsers/windmill-parser-sql" }
|
|
windmill-parser-graphql = { path = "./parsers/windmill-parser-graphql" }
|
|
|
|
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", "cors"] }
|
|
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"] }
|
|
chrono-tz = "^0"
|
|
tracing = "^0"
|
|
tracing-subscriber = { version = "^0", features = ["env-filter", "json"] }
|
|
prometheus = { version = "^0", default-features = false }
|
|
cookie = { version = "0.17.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 = "0.2.0"
|
|
cron = "^0"
|
|
mail-send = { version = "0.4.0", features = ["builder"], 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_fetch = "0.139.0"
|
|
deno_console = "0.115.0"
|
|
deno_url = "0.115.0"
|
|
deno_webidl = "0.115.0"
|
|
deno_web = "0.146.0"
|
|
deno_core = "0.200.0"
|
|
deno_ast = { version = "0.28.0", features = ["transpiling"] }
|
|
async-recursion = "^1"
|
|
swc_common = "0.31.21"
|
|
swc_ecma_parser = "0.137.15"
|
|
swc_ecma_ast = "0.107.7"
|
|
swc_ecma_visit = "0.93.7"
|
|
base64 = "0.21.0"
|
|
hmac = "0.12.1"
|
|
sha2 = "0.10.6"
|
|
sqlx = { version = "^0", features = [
|
|
"macros",
|
|
"migrate",
|
|
"uuid",
|
|
"json",
|
|
"chrono",
|
|
"postgres",
|
|
"runtime-tokio-rustls",
|
|
] }
|
|
dotenv = "^0"
|
|
ulid = { version = "^1", features = ["uuid"] }
|
|
futures = "^0"
|
|
futures-core = "^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"
|
|
rsa = "0.7.2"
|
|
async-stripe = { version = "0.14", features = [
|
|
"runtime-tokio-hyper",
|
|
"checkout",
|
|
] }
|
|
async_zip = { version = "0.0.11", features = ["full"] }
|
|
once_cell = "1.17.1"
|
|
rsmq_async = { version = "5.1.5" }
|
|
gosyn = "0.2.2"
|
|
bytes = "1.4.0"
|
|
gethostname = "0.4.3"
|
|
wasm-bindgen = "0.2"
|
|
serde-wasm-bindgen = "0.4"
|
|
wasm-bindgen-test = "0.3.0"
|
|
convert_case = "0.6.0"
|
|
getrandom = "0.2"
|
|
tokio-postgres = {version = "^0.7", features = ["array-impls", "with-serde_json-1", "with-chrono-0_4", "with-uuid-1"]}
|
|
mysql_async = { version = "*", default-features = false, features = ["minimal", "default", "native-tls-tls"]}
|
|
postgres-native-tls = "^0"
|
|
native-tls = "^0"
|
|
samael = { version = "0.0.12", features = ["xmlsec"] }
|
|
gcp_auth = "0.9.0"
|
|
rust_decimal = {version = "1.31.0", features = ["db-postgres"]}
|
|
jsonwebtoken = "8.3.0"
|
|
pem = "3.0.1"
|