* Use regex to split input to python import parser * gitignore Cargo.toml * gitignore cargo.toml * Restore cargo.lock * fix(rust): make wmill reference correct windmill-api `wmill` crate of version `x` should reference `windmill-api` of the same version `x`
46 lines
741 B
TOML
46 lines
741 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 = "<VERSION>"
|
|
|
|
[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 = []
|