* chore(main): release 1.264.0 * Apply automatic changes --------- Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
220 lines
6.7 KiB
TOML
220 lines
6.7 KiB
TOML
[package]
|
|
name = "windmill"
|
|
version = "1.264.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[workspace]
|
|
members = [
|
|
"./windmill-api",
|
|
"./windmill-queue",
|
|
"./windmill-worker",
|
|
"./windmill-common",
|
|
"./windmill-audit",
|
|
"./windmill-git-sync",
|
|
"./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.264.0"
|
|
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", "windmill-git-sync/enterprise"]
|
|
enterprise_saml = ["windmill-api/enterprise_saml"]
|
|
stripe = ["windmill-api/stripe"]
|
|
benchmark = ["windmill-api/benchmark", "windmill-worker/benchmark", "windmill-queue/benchmark"]
|
|
flamegraph = ["windmill-common/flamegraph", "windmill-worker/flamegraph"]
|
|
loki = ["windmill-common/loki"]
|
|
pg_embed = ["dep:pg-embed"]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
dotenv.workspace = true
|
|
windmill-common = { workspace = true, features = ["tracing_init"] }
|
|
windmill-git-sync.workspace = true
|
|
windmill-api.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
|
|
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
|
|
serde_json.workspace = true
|
|
serde.workspace = true
|
|
pg-embed = {git = "https://github.com/faokunega/pg-embed", optional = true, default-features = false, features = ['rt_tokio']}
|
|
|
|
[dev-dependencies]
|
|
serde_json.workspace = true
|
|
reqwest.workspace = true
|
|
windmill-queue.workspace = true
|
|
axum.workspace = true
|
|
serde.workspace = true
|
|
windmill-api-client.workspace = true
|
|
|
|
|
|
[workspace.dependencies]
|
|
windmill-api = { path = "./windmill-api" }
|
|
windmill-queue = { path = "./windmill-queue" }
|
|
windmill-worker = { path = "./windmill-worker" }
|
|
windmill-common = { path = "./windmill-common" }
|
|
windmill-audit = { path = "./windmill-audit" }
|
|
windmill-git-sync = { path = "./windmill-git-sync" }
|
|
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" }
|
|
windmill-api-client = { path = "./windmill-api-client" }
|
|
|
|
axum = { version = "^0", features = ["headers"] }
|
|
headers = "^0"
|
|
hyper = { version = "^0", features = ["full"] }
|
|
tokio = { version = "^1", features = ["full", "tracing"] }
|
|
tower = "^0"
|
|
tower-http = { version = "^0.4", features = ["trace", "cors"] }
|
|
tower-cookies = "0.9.0"
|
|
serde = "^1"
|
|
serde_json = { version = "^1", features = ["preserve_order", "raw_value"] }
|
|
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"
|
|
quick_cache = "^0"
|
|
rand = "0.8.5"
|
|
rand_core = { version = "^0", features = ["std"] }
|
|
magic-crypt = "^3"
|
|
git-version = "^0"
|
|
rustpython-parser = "0.3.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_tls = "0.102.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.7.3", features = [
|
|
"macros",
|
|
"migrate",
|
|
"uuid",
|
|
"json",
|
|
"chrono",
|
|
"postgres",
|
|
"runtime-tokio-rustls",
|
|
"bigdecimal"
|
|
] }
|
|
bigdecimal = "^0"
|
|
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.25.2", features = [
|
|
"runtime-tokio-hyper",
|
|
"checkout",
|
|
"billing",
|
|
] }
|
|
async_zip = { version = "0.0.11", features = ["full"] }
|
|
once_cell = "1.17.1"
|
|
rsmq_async = { version = "5.1.5" }
|
|
gosyn = "0.2.6"
|
|
bytes = "1.4.0"
|
|
gethostname = "0.4.3"
|
|
wasm-bindgen = "=0.2.89"
|
|
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.14", features = ["xmlsec"] }
|
|
gcp_auth = "0.9.0"
|
|
rust_decimal = { version = "^1", features = ["db-postgres"]}
|
|
jsonwebtoken = "8.3.0"
|
|
pem = "3.0.1"
|
|
nix = { version = "0.27.1", features = ["process", "signal"] }
|
|
tinyvector = { git = "https://github.com/windmill-labs/tinyvector", rev = "20823b94c20f2b9093f318badd24026cf54dcc85" }
|
|
hf-hub = "0.3.2"
|
|
tokenizers = "0.14.1"
|
|
candle-core = "0.3.0"
|
|
candle-transformers = "0.3.0"
|
|
candle-nn = "0.3.0"
|
|
tiberius = { version = "0.12.2", default-features = false, features = ["rustls", "tds73", "chrono", "sql-browser-tokio"] }
|
|
pin-project = "1"
|
|
|
|
polars = { version = "0.35.4", features = ["lazy", "parquet", "aws", "azure", "csv", "dtype-full", "serde", "strings", "extract_groups"] }
|
|
polars-io = { version = "0.35.4", features = ["csv"] }
|
|
object_store = { version = "0.8.0", features = ["aws", "azure"] }
|
|
openidconnect = { version = "3.4.0" }
|