Files
windmill/rust-client/Cargo.proto.toml
pyranota 29719ac504 nit: disable LSP for rust-client (#6040)
* Use regex to split input to python import parser

* gitignore Cargo.toml

* gitignore cargo.toml

* Restore cargo.lock
2025-06-24 15:44:01 +02:00

46 lines
739 B
TOML

[package]
name = "wmill"
version = "<VERSION>"
edition = "2024"
description = "A client library for accessing Windmill server wrapping the Windmill client API"
license = "Apache-2.0"
homepage = "https://windmill.dev"
[workspace]
resolver = "3"
members = ["windmill_api"]
[dependencies]
serde_yaml = "0.9"
serde_json = "1.0"
serde = "1.0"
thiserror = "2"
anyhow = "1.0"
uuid = "1"
[dependencies.windmill-api]
path = "./windmill_api"
version = "1.496.3"
[dependencies.futures]
version = "0.3"
[dependencies.tokio]
version = "1"
default-features = false
[dependencies.once_cell]
version = "1.18"
[dev-dependencies.tokio]
version = "1"
default-features = false
features = [
"rt",
"macros",
]
[features]
default = []
async = []