ruby 0.0.2

Pure Rust implementation of Ruby runtime environment
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "ruby"
version = "0.0.2"
authors = ["RBQ Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust implementation of Ruby runtime environment"
readme = "README.md"
keywords = [
    "ruby",
    "runtime",
    "language",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/nyar-vm/rusty-ruby"

[lib]
name = "ruby"
path = "src/lib.rs"

[[test]]
name = "ffi_test"
path = "tests/ffi_test.rs"

[[test]]
name = "gc_test"
path = "tests/gc_test.rs"

[[test]]
name = "jit_performance_test"
path = "tests/jit_performance_test.rs"

[[test]]
name = "jit_test"
path = "tests/jit_test.rs"

[[test]]
name = "language_spec_test"
path = "tests/language_spec_test.rs"

[[test]]
name = "optimization_test"
path = "tests/optimization_test.rs"

[[test]]
name = "performance_test"
path = "tests/performance_test.rs"

[[test]]
name = "runtime_test"
path = "tests/runtime_test.rs"

[[test]]
name = "vm_test"
path = "tests/vm_test.rs"

[dependencies.cranelift]
version = "0.103.0"

[dependencies.cranelift-codegen]
version = "0.103.0"

[dependencies.cranelift-frontend]
version = "0.103.0"

[dependencies.cranelift-jit]
version = "0.103.0"

[dependencies.cranelift-module]
version = "0.103.0"

[dependencies.libloading]
version = "0.8.1"

[dependencies.oak-core]
version = "0.0.10"

[dependencies.oak-ruby]
version = "0.0.10"

[dependencies.oak-vfs]
version = "0.0.10"

[dependencies.ruby-ir]
version = "0.0.2"

[dependencies.ruby-types]
version = "0.0.2"