mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 16:08:00 +00:00
46 lines
1.2 KiB
TOML
46 lines
1.2 KiB
TOML
[package]
|
|
name = "revive-llvm-context"
|
|
version.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
authors = [
|
|
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
|
]
|
|
description = "Shared front end code of the revive PolkaVM compilers"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[features]
|
|
riscv-zbb = []
|
|
riscv-64 = [
|
|
"revive-linker/riscv-64",
|
|
"revive-builtins/riscv-64",
|
|
"revive-runtime-api/riscv-64",
|
|
"revive-common/riscv-64",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
semver = { workspace = true }
|
|
itertools = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
regex = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
num = { workspace = true }
|
|
hex = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
sha3 = { workspace = true }
|
|
md5 = { workspace = true }
|
|
inkwell = { workspace = true }
|
|
polkavm-disassembler = { workspace = true }
|
|
polkavm-common = { workspace = true }
|
|
|
|
revive-common = { workspace = true }
|
|
revive-runtime-api = { workspace = true }
|
|
revive-linker = { workspace = true }
|
|
revive-builtins = { workspace = true }
|
|
revive-stdlib = { workspace = true }
|