-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 698 Bytes
/
Cargo.toml
File metadata and controls
24 lines (20 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "actions-github"
version = "0.1.0"
edition = "2021"
authors = ["Javier Bullrich <javier@bullrich.dev>"]
description = "A rust translation of the helper library @actions/github to build GitHub actions using rust"
readme = "README.md"
repository = "https://github.com/Bullrich/rusty-actions-github"
license = "MIT"
keywords = ["github", "actions"]
documentation = "https://docs.rs/actions-github/latest/actions_github/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
json = "0.12.4"
uuid = { version = "1.8.0", features = ["v4"] }
[dev-dependencies]
divan = "0.1.14"
[[bench]]
name = "action_speed"
harness = false