Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
google
GitHub Repository: google/crosvm
Path: blob/main/base/Cargo.toml
5392 views
1
[package]
2
name = "base"
3
version = "0.1.0"
4
authors = ["The ChromiumOS Authors"]
5
edition = "2021"
6
7
[features]
8
proto_tube = ["protobuf"]
9
seccomp_trace = []
10
11
[dependencies]
12
audio_streams = { workspace = true }
13
base_event_token_derive = { path = "base_event_token_derive" }
14
sync = { workspace = true }
15
16
cfg-if = { workspace = true }
17
chrono = { version = "0.4.34", features = ["now"], default-features = false }
18
env_logger = { version = "0.9.0", default-features = false }
19
libc = { workspace = true }
20
log = "0.4"
21
protobuf = { version = "3.2", optional = true }
22
remain = { workspace = true }
23
serde = { workspace = true, features = [ "derive" ] }
24
serde_json = { workspace = true }
25
smallvec = "1.6.1"
26
thiserror = { workspace = true }
27
uuid = { version = "1", features = ["v4"] }
28
zerocopy = { version = "0.8.13", features = ["derive"] }
29
30
[dev-dependencies]
31
protos = { workspace = true, features = ["composite-disk"] }
32
tempfile = "3"
33
34
[target.'cfg(windows)'.dependencies]
35
futures = { version = "0.3" }
36
protobuf = "3.2"
37
rand = { workspace = true }
38
winapi = "0.3"
39
win_util = { path = "../win_util"}
40
41
[target.'cfg(target_os = "android")'.dependencies]
42
android_log-sys = "0.3.1"
43
44