-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (23 loc) · 991 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "botwork"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "botwork is a single-binary, generic and open-source automation framework written in Rust for acceptance testing, acceptance test driven development (ATDD), and robotic process automation (RPA). The syntax is basically plain text (in any human lanuage) with parameters. Easily extendible with Rust, Python & JavaScript. An efficient, fast alternative to Robot Framework."
documentation = "https://docs.rs/botwork"
homepage = "https://github.com/nitimis/botwork"
repository = "https://github.com/nitimis/botwork"
readme = "README.md"
keywords = ["botwork", "robotframework", "testing", "ATDD", "rpa"]
categories = ["science::robotics", "development-tools", "development-tools::testing"]
[lib]
name = "botwork"
[[bin]]
name = "botwork"
[dependencies]
clap = { version = "4.2.2", features = ["derive"] }
lazy_static = "1.4.0"
log = "0.4.17"
pest = "2.5.7"
pest_derive = "2.5.7"
thiserror = "1.0.40"