cc626d686c
Change-Id: I87dfadda872439e108e5f678a5da63dd5b1915d1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7732 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
23 lines
647 B
TOML
23 lines
647 B
TOML
[package]
|
|
name = "derivation"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
glob = "0.3.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
sha2 = "0.10.6"
|
|
tvix-store-bin = { path = "../store" }
|
|
|
|
[dev-dependencies.test-generator]
|
|
# This fork of test-generator adds support for cargo workspaces, see
|
|
# also https://github.com/frehberg/test-generator/pull/14
|
|
git = "https://github.com/JamesGuthrie/test-generator.git"
|
|
rev = "82e799979980962aec1aa324ec6e0e4cad781f41"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
test-case = "2.2.2"
|