ParkMyCar / compact_str

A memory efficient string type that can store up to 24* bytes on the stack
MIT License
638 stars 46 forks source link

Support ARM CHERI #378

Open overlookmotel opened 4 months ago

overlookmotel commented 4 months ago

@NobodyXu said in https://github.com/ParkMyCar/compact_str/issues/356#issuecomment-2097271534:

This reminds me of a problem: with arm CHERI, size of pointer is 128 bits instead of 64 bits, containing an extra tag for the heap allocation.

It looks like we might have to update this crate to support arm CHERI @ParkMyCar