-
Notifications
You must be signed in to change notification settings - Fork 182
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (49 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
56 lines (49 loc) · 1.48 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
[package]
name = "burette"
edition.workspace = true
rust-version.workspace = true
[dependencies]
petri.workspace = true
petri_artifacts_common.workspace = true
petri_artifacts_core.workspace = true
petri_artifacts_vmm_test.workspace = true
petri_artifact_resolver_openvmm_known_paths.workspace = true
disk_backend_resources.workspace = true
guid.workspace = true
openvmm_defs.workspace = true
openvmm_helpers.workspace = true
pal_async.workspace = true
virtio_resources.workspace = true
vm_resource.workspace = true
anyhow.workspace = true
clap = { workspace = true, features = ["derive"] }
fs-err.workspace = true
futures.workspace = true
jiff.workspace = true
mesh.workspace = true
mesh_process.workspace = true
serde = { workspace = true, features = ["std", "derive"] }
serde_json = { workspace = true, features = ["std"] }
tempfile.workspace = true
tracing.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
guid.workspace = true
libc.workspace = true
net_backend_resources.workspace = true
net_tap.workspace = true
netvsp_resources.workspace = true
virtio_resources.workspace = true
vm_resource.workspace = true
[target.'cfg(windows)'.dependencies]
windows = { workspace = true, features = [
"Win32_System_ProcessStatus",
"Win32_System_Diagnostics_ToolHelp",
"Win32_System_Threading",
"Win32_System_SystemInformation",
] }
[build-dependencies]
build_rs_git_info.workspace = true
[lints]
workspace = true