-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (47 loc) · 1.48 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = ["crates/*", "examples/*"]
resolver = "3"
[workspace.package]
version = "0.0.14"
edition = "2024"
rust-version = "1.85"
description = "cdk-ansible is a tool to generate Ansible playbooks from Rust code."
homepage = "https://github.com/pollenjp/cdk-ansible"
documentation = "https://docs.rs/cdk-ansible"
repository = "https://github.com/pollenjp/cdk-ansible"
authors = ["pollenjp"]
license = "MIT"
keywords = ["ansible", "cdk", "cdk-ansible"]
[workspace.dependencies]
cdk-ansible = { path = "crates/cdk-ansible" }
cdk-ansible-cli = { path = "crates/cdk-ansible-cli" }
cdk-ansible-core = { version = "0.0.5", path = "crates/cdk-ansible-core" }
cdk-ansible-static = { version = "0.0.2", path = "crates/cdk-ansible-static" }
cdk-ansible-macro = { version = "0.0.4", path = "crates/cdk-ansible-macro" }
anyhow = { version = "1.0.95" }
cargo_toml = "0.21.0"
clap = { version = "4.5.21", features = [
"derive",
"env",
"string",
"wrap_help",
] }
dyn-clone = "1.0.17"
erased-serde = "0.4.5"
fs-err = "3.0.0"
indexmap = { version = "2.7.1", features = ["serde"] }
regex = "1.11.1"
quote = "1.0.37"
semver = "1.0.25"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.138", features = ["preserve_order"] }
syn = { version = "2.0.90", features = ["full"] }
toml = "0.8.19"
[workspace.lints.rust]
[workspace.lints.clippy]
# TODO: uncomment
# cargo = "warn"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"