Skip to content

Instantly share code, notes, and snippets.

View appcypher's full-sized avatar
:octocat:
What's up?

Stephen Akinyemi appcypher

:octocat:
What's up?
View GitHub Profile
@appcypher
appcypher / crystal_compiler_types_and_methods.txt
Created October 26, 2017 00:05 — forked from asterite/crystal_compiler_types_and_methods.txt
All types and methods instantiated when compiling the Crystal compiler
This file has been truncated, but you can view the full file.
|=== <Program> ===|
#__crystal_get_exception(Pointer(LibUnwind::Exception))
#__crystal_malloc(UInt32)
#__crystal_malloc_atomic(UInt32)
#__crystal_personality(Int32, LibUnwind::Action, UInt64, Pointer(LibUnwind::Exception), Pointer(Void))
#__crystal_raise(Pointer(LibUnwind::Exception))
#__crystal_raise_string(Pointer(UInt8))
#__crystal_realloc(Pointer(Void), UInt32)
#__crystal_sigfault_handler(Int32, Pointer(Void))
#_fiber_get_stack_top()
@appcypher
appcypher / Cargo.toml
Created March 20, 2024 00:06 — forked from s3rius/Cargo.toml
PyO3-asyncio async streams
[package]
name = "itertest"
version = "0.1.0"
edition = "2021"
[dependencies]
futures = "0.3.28"
pyo3 = "0.19.2"
pyo3-asyncio = { version = "0.19.0", features = ["tokio-runtime"] }
tokio = { version = "1.32.0", features = ["sync"] }