-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
118 lines (114 loc) · 3.82 KB
/
Cargo.toml
File metadata and controls
118 lines (114 loc) · 3.82 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[workspace.lints.clippy]
panic = "warn"
[workspace]
resolver = "3"
members = [
"changelog",
"changelog_lib",
"crates/c_ffi",
"crates/core",
"crates/domain",
"crates/grpc",
"crates/proto",
"crates/rust",
"crates/rust_build",
"crates/rust_generator",
"crates/rust_integration",
"crates/schema",
"crates/schema_protobuf",
"crates/serde_constant_string",
"crates/wasm_runner",
"crates/wit",
"deploy/repository",
"examples/c",
"examples/common",
"examples/dependencies",
"examples/docker",
"examples/failure",
"examples/multiple_providers",
"examples/native",
"examples/plugins",
"examples/raw_rust",
"examples/secret",
"examples/simple",
"examples/test",
"examples/typesystem",
"examples/wasm",
"providers/aws-mini",
"providers/azure-mini",
"providers/cloudflare",
"providers/docker",
"providers/gcp-mini",
"providers/random",
"providers/test",
"providers/typesystem",
"regenerator",
]
[workspace.package]
version = "0.0.0-DEV"
edition = "2024"
license = "MPL-2.0"
repository = "https://github.com/andrzejressel/pulumi-gestalt"
readme = "README.md"
[workspace.dependencies]
pulumi_gestalt_core = { version = "=0.0.0-DEV", path = "crates/core" }
pulumi_gestalt_domain = { version = "=0.0.0-DEV", path = "crates/domain" }
pulumi_gestalt_build = { version = "=0.0.0-DEV", path = "crates/rust_build" }
pulumi_gestalt_generator = { version = "=0.0.0-DEV", path = "crates/rust_generator" }
pulumi_gestalt_rust = { version = "=0.0.0-DEV", path = "crates/rust" }
pulumi_gestalt_proto = { version = "=0.0.0-DEV", path = "crates/proto" }
pulumi_gestalt_wit = { version = "=0.0.0-DEV", path = "crates/wit" }
pulumi_gestalt_providers_docker = { version = "=0.0.0-DEV", path = "providers/docker" }
pulumi_gestalt_providers_random = { version = "=0.0.0-DEV", path = "providers/random" }
pulumi_gestalt_providers_test = { version = "=0.0.0-DEV", path = "providers/test" }
pulumi_gestalt_providers_typesystem = { version = "=0.0.0-DEV", path = "providers/typesystem" }
pulumi_gestalt_examples_common = { version = "=0.0.0-DEV", path = "examples/common" }
pulumi_gestalt_grpc_connection = { version = "=0.0.0-DEV", path = "crates/grpc" }
pulumi_gestalt_rust_integration = { version = "=0.0.0-DEV", path = "crates/rust_integration" }
pulumi_gestalt_schema = { version = "=0.0.0-DEV", path = "crates/schema" }
pulumi_gestalt_schema_protobuf = { version = "=0.0.0-DEV", path = "crates/schema_protobuf" }
changelog_lib = { version = "=0.0.0-DEV", path = "changelog_lib" }
pulumi_gestalt_serde_constant_string = { version = "=0.0.0-DEV", path = "crates/serde_constant_string" }
anyhow = "1.0.98"
prost = "0.14.1"
prost-types = "0.14.1"
uuid = { version = "1.16.0", features = ["v4", "v7"] }
futures = "0.3.31"
wit-bindgen = "0.54.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140" }
tonic = { version = "0.14.0", default-features = false }
tonic-prost = "0.14.0"
tonic-prost-build = "0.14.0"
wasmtime = "43.0.0"
wasmtime-wasi = "43.0.0"
log = { version = "0.4.27", features = ["kv"] }
log4rs = "1.3.0"
tokio = { version = "1.45.0", features = ["sync", "macros", "io-util", "rt", "time", "fs", "rt-multi-thread"] }
tokio-stream = "0.1.17"
clap = { version = "4.5.38", features = ["derive"] }
regex = "1.11.1"
syn = { version = "2.0.101", features = ["full"] }
quote = "1.0.40"
assert_cmd = "2.0.17"
itertools = "0.14.0"
handlebars = "6.3.2"
convert_case = "0.11.0"
mockall = "0.14.0"
serde_yaml = "0.9.34+deprecated"
prettyplease = "0.2.32"
bon = "3.6.3"
proc-macro2 = "1.0.95"
askama = "0.15.0"
tempfile = "3.20.0"
pathdiff = "0.2.3"
wat = "1.230.0"
wasmparser = "0.245.0"
cbindgen = "0.29.0"
libc = "0.2.172"
gix = "0.81.0"
once_cell = "1.21.3"
proptest = "1.6.0"
static_assertions = "1.1.0"
async-trait = "0.1.89"
base64 = "0.22.1"