Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/reader/Cargo.toml
1692 views
1
[package]
2
authors = ["The Cranelift Project Developers"]
3
name = "cranelift-reader"
4
version = "0.125.0"
5
description = "Cranelift textual IR reader"
6
license = "Apache-2.0 WITH LLVM-exception"
7
documentation = "https://docs.rs/cranelift-reader"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
readme = "README.md"
10
edition.workspace = true
11
rust-version.workspace = true
12
13
[lints]
14
workspace = true
15
16
[dependencies]
17
anyhow = { workspace = true, features = ['std'] }
18
cranelift-codegen = { workspace = true }
19
smallvec = { workspace = true }
20
target-lexicon = { workspace = true, features = ['std'] }
21
22
[dev-dependencies]
23
# Some tests require that the x86_64 target parses for the target specification.
24
cranelift-codegen = { workspace = true, features = ['x86'] }
25
26