22 lines
522 B
TOML
22 lines
522 B
TOML
![]() |
[package]
|
||
|
name = "gb-vm"
|
||
|
version = { workspace = true }
|
||
|
edition = { workspace = true }
|
||
|
authors = { workspace = true }
|
||
|
license = { workspace = true }
|
||
|
|
||
|
[dependencies]
|
||
|
gb-core = { path = "../gb-core" }
|
||
|
async-trait = { workspace = true }
|
||
|
tokio = { workspace = true }
|
||
|
serde = { workspace = true }
|
||
|
serde_json = { workspace = true }
|
||
|
thiserror = { workspace = true }
|
||
|
tracing = { workspace = true }
|
||
|
minio = "0.1.0"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
rstest = { workspace = true }
|
||
|
tokio-test = { workspace = true }
|
||
|
tempfile = { workspace = true }
|