Add mention to versions in local dependencies (#1546)

This commit is contained in:
Robin Salen 2024-02-28 15:27:21 +09:00 committed by GitHub
parent 0817fd8e98
commit 44dc0f96ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View File

@ -20,7 +20,7 @@ static_assertions = { workspace = true }
unroll = { workspace = true }
# Local dependencies
plonky2_util = { path = "../util", default-features = false }
plonky2_util = { version = "0.2.0", path = "../util", default-features = false }
# Display math equations properly in documentation

View File

@ -34,9 +34,9 @@ unroll = { workspace = true }
web-time = { version = "1.0.0", optional = true }
# Local dependencies
plonky2_field = { path = "../field", default-features = false }
plonky2_maybe_rayon = { path = "../maybe_rayon", default-features = false }
plonky2_util = { path = "../util", default-features = false }
plonky2_field = { version = "0.2.0", path = "../field", default-features = false }
plonky2_maybe_rayon = { version = "0.2.0", path = "../maybe_rayon", default-features = false }
plonky2_util = { version = "0.2.0", path = "../util", default-features = false }
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]

View File

@ -26,9 +26,9 @@ log = { workspace = true }
num-bigint = { version = "0.4.3", default-features = false }
# Local dependencies
plonky2 = { path = "../plonky2", default-features = false }
plonky2_maybe_rayon = { path = "../maybe_rayon", default-features = false }
plonky2_util = { path = "../util", default-features = false }
plonky2 = { version = "0.2.0", path = "../plonky2", default-features = false }
plonky2_maybe_rayon = { version = "0.2.0", path = "../maybe_rayon", default-features = false }
plonky2_util = { version = "0.2.0", path = "../util", default-features = false }
[dev-dependencies]
env_logger = { version = "0.9.0", default-features = false }