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
@asterite
asterite / crystal_compiler_types_and_methods.txt
Created August 21, 2017 01:47
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()
@s3rius
s3rius / Cargo.toml
Last active November 18, 2024 04:38
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"] }