Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/fuzzgen/Cargo.toml
1690 views
1
[package]
2
name = "cranelift-fuzzgen"
3
version = "0.0.0"
4
authors = ["The Wasmtime Project Developers"]
5
description = "Cranelift module generator"
6
license = "Apache-2.0 WITH LLVM-exception"
7
repository = "https://github.com/bytecodealliance/wasmtime"
8
readme = "README.md"
9
edition.workspace = true
10
rust-version.workspace = true
11
publish = false
12
13
[lints]
14
workspace = true
15
16
[dependencies]
17
cranelift = { workspace = true }
18
cranelift-native = { workspace = true }
19
20
anyhow = { workspace = true, features = ['std'] }
21
arbitrary = { workspace = true }
22
target-lexicon = { workspace = true, features = ["std"] }
23
rand = { workspace = true }
24
25