-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
37 lines (33 loc) · 1003 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
27
28
29
30
31
32
33
34
35
36
37
[package]
authors = { workspace = true }
edition = { workspace = true }
name = "spk-cmd-build"
version = { workspace = true }
license-file = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
readme = { workspace = true }
description = { workspace = true }
[lints]
workspace = true
[features]
migration-to-components = [
"spk-cli-common/migration-to-components",
"spk-cmd-make-binary/migration-to-components",
"spk-cmd-make-source/migration-to-components",
]
[dependencies]
miette = { workspace = true, features = ["fancy"] }
async-trait = { workspace = true }
clap = { workspace = true }
spfs = { workspace = true }
spk-cli-common = { workspace = true }
spk-cmd-make-binary = { workspace = true }
spk-cmd-make-source = { workspace = true }
spk-schema = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
rstest = { workspace = true }
spk-storage = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true }