Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/firecracker
Path: blob/main/src/logger/Cargo.toml
1956 views
1
[package]
2
name = "logger"
3
version = "0.1.0"
4
authors = ["Amazon Firecracker team <[email protected]>"]
5
edition = "2018"
6
7
[dependencies]
8
lazy_static = ">=1.2"
9
libc = ">=0.2.39"
10
log = { version = ">=0.4", features = ["std"] }
11
serde = { version = ">=1.0.27", features = ["derive", "rc"] }
12
serde_json = ">=1.0.9"
13
vm-superio = ">=0.2.0"
14
15
utils = { path = "../utils" }
16
17
18