Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "2"
env_logger = "0.10.1"
indexmap = "=2.11.4" # this version has MSRV 1.63, while the next 2.12.0 jumps to MSRV 1.82
libm = "0.2.8"
log = "=0.4.22"
log = "0.4.22"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
test-log = { version = "0.2.14", features = ["log"] }
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.sdoc
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ RELATIONS:
UID: REQ-15
TITLE: Allow log dependency
STATEMENT: >>>
The interpreter shall have an optional dependency on the ``log`` crate version ``0.4.22``
The interpreter shall have an optional dependency on the ``log`` version ``0.4.22`` or later.
<<<
RATIONALE: >>>
Logging is an essential tool to make a system observable, and aid in debugging. Bespoke crate is widely used in the Rust ecosystem and can be attached to any (or no) logging backend. Using conditional compilation, all of the ``log`` crate's footprint in the WASM interpreter (foremost the ``debug``, ``error``, ``info``, ``trace`` and ``warn`` macro) can be expanded to empty statements to avoid **any** run-time impact when opting out of the dependency on ``log``.
Expand Down