mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 08:31:50 +03:00
ee8e9e5c60
This PR fixes #6560. The fix has a few elements: 1) Bumps the Engine requirement to the latest release, namely `2023.1.1`. 2) Changed the logic of checking whether a given version matches the requirement. Previously, we relied on `VersionReq` from `semver` crate which did not behave intuitively when the required version had a prerelease suffix. Now we rely directly on Semantic Versioning rules of precedence. 3) Code cleanups, including deduplicating 3 copies of the version-checking code, and moving some tests to more sensible places.
16 lines
440 B
TOML
16 lines
440 B
TOML
[package]
|
|
name = "enso-config"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
ensogl = { path = "../../../lib/rust/ensogl" }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
enso-json-to-struct = { path = "../../../lib/rust/json-to-struct" }
|
|
semver = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
config-reader = { path = "../../../lib/rust/config-reader" }
|