1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
[package]
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
edition = "2018"
description = "A library for manipulating Souper IR"
documentation = "https://docs.rs/souper-ir"
license = "MIT OR Apache-2.0"
name = "souper-ir"
readme = "./README.md"
repository = "https://github.com/fitzgen/souper-ir"
version = "2.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
id-arena = "2.2.1"
[features]
parse = []
stringify = []
[workspace]
members = [
"./crates/tests",
"./fuzz",
]
[package.metadata.docs.rs]
all-features = true
|