Skip to main content

multi-demangle

CI

Demangling support for various languages and compilers, usable as a Rust crate or a Python extension module. Fork of symbolic-demangle.

Currently supported languages are:

Language Mangling schemes / notes Cargo feature
C++ Itanium ABI (GCC, Clang), GNU v2, CodeWarrior, and MSVC cpp, gnuv2, codewarrior, msvc
Rust Both legacy and v0 schemes rust
Scala Native Via the unknown-language fallback (symbols prefixed _SM) scala-native
Swift Up to Swift 6.3.3, using a vendored Swift demangler swift
D D ABI mangling (_D…), incl. function types and templates dlang
Fortran gfortran mod_MOD_proc and Intel mod_mp_proc_; the plain g77 name_ form only via explicit request (see below) fortran
Kotlin/Native _kfun: symbols with parameter types kotlin-native
Ada (GNAT) pkg__sub encoding with escapes, operators, and markers ada
ObjC Selectors plus runtime metadata symbols (_OBJC_CLASS_$_…, _OBJC_IVAR_$_…, selector references) always on

All of the above features are enabled by default. Disabling them trims the corresponding demangler (and, for swift, the vendored C++ sources) from the build.

As the demangling schemes for the languages are different, the supported demangling features are inconsistent. For example, argument types were not encoded in legacy Rust mangling and thus not available in demangled names.

Rust usage

The crate exposes a Demangle trait on symbolic_common::Name, along with DemangleOptions to control how verbose the output is:

use symbolic_common::{Language, Name};
use multi_demangle::{Demangle, DemangleOptions};

let name = Name::from("__ZN3std2io4Read11read_to_end17hb85a0f6802e14499E");

// Detect the language of a mangled symbol.
assert_eq!(name.detect_language(), Language::Rust);

// Demangle with a full, verbose signature.
assert_eq!(
    name.try_demangle(DemangleOptions::complete()),
    "std::io::Read::read_to_end"
);

// The shortcut free function demangles with complete options and
// falls back to the input if demangling fails.
assert_eq!(multi_demangle::demangle("_ZN3foo3barEv"), "foo::bar()");

The cli cargo feature (on by default) pulls in the argument parser for the binary. Library-only consumers can drop it by re-enabling the backends explicitly:

multi-demangle = { version = "...", default-features = false, features = [
  "cpp", "gnuv2", "codewarrior", "msvc", "rust", "scala-native", "swift",
] }

Batch demangling

Symbol tables repeat the same symbol many times (dynsym, symtab, version tables, and GOT/PLT maps), so the batch API demangles each distinct symbol at most once and preserves input order:

use multi_demangle::{demangle_iter, DemangleOptions};

let symbols = ["_ZN3foo3barEv", "libc.so.6", "_ZN3foo3barEv"];
let demangled = demangle_iter(symbols, DemangleOptions::complete());
assert_eq!(&demangled[0], "foo::bar()");
assert_eq!(&demangled[1], "libc.so.6");
assert_eq!(&demangled[2], "foo::bar()");

demangle_iter computes the whole batch eagerly and returns a Vec (in input order). demangle_one is the single-symbol pipeline the batch is built on (it is what multi_demangle::demangle delegates to), exposed so consumers can share it with their own batching. Enabling the parallel cargo feature (off by default) demangles the distinct symbols on the rayon thread pool.

multi-demangle = { version = "...", features = ["parallel"] }

Structured demangling

demangle_structured extracts typed fields from the demangled rendering — namespace path, leaf name, entity kind, generics, parameters, return type, and compiler disambiguation hashes — so consumers do not have to re-parse text:

use symbolic_common::Name;
use multi_demangle::{Demangle, DemangleOptions};

let info = Name::from("_ZN3std2io4Read11read_to_end17hb85a0f6802e14499E")
    .demangle_structured(DemangleOptions::complete())
    .unwrap();
assert_eq!(info.namespace, ["std", "io", "Read"]);
assert_eq!(info.name, "read_to_end");
assert_eq!(info.kind, multi_demangle::DemangledKind::Method);
assert_eq!(info.hash.as_deref(), Some("hb85a0f6802e14499"));
assert_eq!(info.parameters, None); // legacy Rust encodes no parameter types

DemangledKind classifies the entity (best-effort, modeled on the primary consumer's tables): Function, Method, Closure, Glue (CRT/linker glue and drop glue), Intrinsic, MethodThunk, VirtualTable, TypeInfo, ObjCMethod { class_method }, StaticVariable, or Other.

<Type as Trait>:: and <impl Trait for Type>:: prefixes are reduced to the implementing type in the namespace, and trailing Rust hashes plus .llvm.N clone counters are captured into hash instead of being silently stripped.

Where a backend exposes its parse tree, the fields come from the AST rather than text: MSVC symbols are walked through msvc_demangler's parse tree (which is how a data symbol like ?value@ns@@3HA is correctly a StaticVariable and ??_7Bar@@6B@ a VirtualTable), Swift symbols through the vendored demangler's node tree (accessors, initializers, and closures keep their kinds; accessor names resolve to the wrapped property), and Itanium kinds come from the mangling grammar's own prefixes (_ZGV guard variables, _ZTV/_ZTC vtables, _ZTh/_ZTv thunks). Text-derived extraction remains the fallback for every language.

One stated Itanium limitation: thunk symbols (_ZTh/_ZTv) classify with the right kind, but their target identity is not extracted — the leaf name stays the full brace rendering ({virtual override thunk(...)}) since the demangled form is descriptive and no Itanium AST is available to walk.

New-language backends (D, Fortran, Kotlin/Native, Ada)

The D backend is a port of LLVM's D demangler extended with the full type grammar from the D ABI specification — function types, member functions, compound types, type modifiers, template instances, and back references. It is the only D demangler implemented in Rust. Function symbols render as module.func(params) without the return type (matching the reference demanglers), variables as type module.var, and template instances as name!(args):

use symbolic_common::{Language, Name};
use multi_demangle::{Demangle, DemangleOptions};

assert_eq!(Name::from("_Dmain").detect_language(), Language::D);
assert_eq!(
    Name::from("_D6module4funcFZv").try_demangle(DemangleOptions::complete()),
    "module.func()"
);
assert_eq!(
    Name::from("_D6module4Test6methodMFiZi").try_demangle(DemangleOptions::complete()),
    "module.Test.method(int)"
);

Fortran module symbols demangle to module::proc for both gfortran (__mod_MOD_proc, with or without platform underscores) and Intel (mod_mp_proc_) conventions. The plain g77 form (init_, my_sub__) is explicit-only: any C symbol can end in _, so auto-detection never claims it. Use demangle_as("fortran", …) (Rust) or --language fortran (CLI) to demangle that form.

use multi_demangle::{demangle_as, Demangle, DemangleOptions};

// Auto-detection leaves `init_` alone (it could be a C symbol)...
assert_eq!(multi_demangle::demangle("init_"), "init_");
// ...but the explicit entry point demangles it.
assert_eq!(
    demangle_as("fortran", "init_", DemangleOptions::complete()),
    Some("init".to_string())
);

Kotlin/Native symbols still carry the readable kfun: prefix (verified against the 2.0.20x compilers; see contrib/fixtures/kotlin/), in the modern spelling kfun:<pkg>#<member>(<params>){<bounds>}<ret>. They render with their parameter and return types and kotlin. prefix elision: kfun:com.example.Counter#increment(kotlin.Int){}kotlin.Int becomes com.example.Counter.increment(Int): Int. Compiler markers (#static, #internal) render as trailing name segments, and -trampoline thunks keep a [trampoline] marker so they do not alias the function they dispatch to.

Ada (GNAT) symbols decode the pkg__sub encoding — _ada_ prefixes, __N body suffixes, elaboration procedures (corpus___elabbcorpus'Elab_Body), compiler-generated task companions (TB task body, IP initialization procedure, E/Z variables), U/W character escapes, anonymous blocks, and operator names (module__Oaddmodule."+").

ObjC support now also recognizes runtime metadata symbols — _OBJC_CLASS_$_Foo, _OBJC_METACLASS_$_Foo, _OBJC_IVAR_$_Foo.bar, and emitted selector references (l_OBJC_SELECTOR_REFERENCES_…) — passing the symbols through unchanged but classifying them with typed kinds (objc_class, objc_metaclass, objc_ivar, glue) in the structured API. These dominate non-Swift Mach-O symbol tables.

Symbol hygiene

On top of demangling, the crate provides cheap, prefix-based helpers for the questions consumers face around demangling: is this symbol mangled, in which language, and which linker decorations wrap it?

use multi_demangle::{
    classify_symbol, detect_language, looks_mangled, normalize_symbol, Decoration,
    SymbolStatus,
};

// Cheap mangling check; never attempts a demangling pass.
assert!(looks_mangled("_$s8mangling12GenericUnionO3FooyACyxGSicAEmlF"));
assert!(!looks_mangled("libc.so.6"));

// Language detection (includes Scala Native, which has no Language variant).
assert_eq!(detect_language("_ZN3foo3barEv"), Some("cpp"));
assert_eq!(detect_language("libc.so.6"), None);

// Classification without demangling.
let status = classify_symbol("__imp_?foo@bar@@YAXXZ");
assert_eq!(
    status,
    SymbolStatus::Decorated {
        decoration: Decoration::ImportPointer,
        inner: Box::new(SymbolStatus::Mangled(symbolic_common::Language::Cpp)),
    }
);

// Display-oriented normalization: legacy Rust `$`-escapes, Rust hash
// suffixes, import pointer rewriting, and pseudo-symbol mapping.
assert_eq!(
    normalize_symbol("std::io::Read::read_to_end::hb85a0f6802e14499"),
    "std::io::Read::read_to_end"
);
assert_eq!(
    normalize_symbol("__imp__Z1fv"),
    "__declspec(dllimport) _Z1fv"
);

Two Normalizer pass sets are available: Normalizer::display() (the default of normalize_symbol) cleans names for humans, while Normalizer::matching() additionally strips .llvm. clone suffixes, PLT/GOT call stubs, and ELF version suffixes — and strips import pointers instead of rewriting them — so results match the other binary's export table:

use multi_demangle::Normalizer;

assert_eq!(
    Normalizer::matching().normalize("memcpy@plt"),
    "memcpy"
);
assert_eq!(
    Normalizer::matching().normalize("__imp_CreateFileW"),
    "CreateFileW"
);

Demangle::try_demangle_normalized combines demangling with a normalizer fallback: a symbol that cannot be demangled goes through the given passes instead of being returned unchanged (successful demangled output is never normalized).

use symbolic_common::Name;
use multi_demangle::{Demangle, DemangleOptions, Normalizer};

assert_eq!(
    Name::from("__imp__ZN3foo3barEv")
        .try_demangle_normalized(DemangleOptions::complete(), &Normalizer::display()),
    "__declspec(dllimport) _ZN3foo3barEv"
);

Python usage

Install the pypi package multi-demangle:

pip install multi-demangle

The module exposes demangle_symbol together with a DemangleOptions class:

>>> import multi_demangle
>>> print(multi_demangle.demangle_symbol("_ZN3foo3barEv"))
foo::bar()

>>> # name-only output, without parameters or return types
>>> opts = multi_demangle.DemangleOptions.name_only()
>>> print(multi_demangle.demangle_symbol("_ZN3foo3barEv", options=opts))
foo::bar

>>> # pick individual options via keyword arguments
>>> opts = multi_demangle.DemangleOptions(return_type=False, parameters=True)
>>> print(multi_demangle.demangle_symbol("__pl__FRC9CRelAngleRC9CRelAngle", options=opts))
operator+(CRelAngle const &, CRelAngle const &)

demangle_symbol returns the original string unchanged when the language cannot be detected or demangling fails.

Batch demangling

demangle_symbols demangles a whole batch in one call, releasing the GIL for the duration. It accepts any iterable of strings — lists, tuples, generators, map objects — so hot loops can feed it without materializing first. Duplicate symbols are demangled once by default and share a single string object across their occurrences; results keep the input order and unmangled symbols pass through unchanged:

>>> multi_demangle.demangle_symbols(["_ZN3foo3barEv", "libc.so.6", "_ZN3foo3barEv"])
['foo::bar()', 'libc.so.6', 'foo::bar()']

>>> # pass unique=False to demangle every position independently
>>> multi_demangle.demangle_symbols(["_Z1hic", "libc.so.6"], unique=False)
['h(int, char)', 'libc.so.6']

>>> # options behave like demangle_symbol
>>> multi_demangle.demangle_symbols(["_ZN3foo3barEv"], options=multi_demangle.DemangleOptions.name_only())
['foo::bar']

This replaces the per-symbol calls in hot loops (full symbol tables, PE import tables, Mach-O binding/stub maps) with a handful of batch calls. Type stubs ship with the wheel (multi_demangle.pyi), so type checkers see the full API including the keyword-only unique parameter.

Language detection and symbol hygiene

>>> multi_demangle.detect_language("_ZN3foo3barEv")
'cpp'
>>> multi_demangle.detect_language("libc.so.6") is None
True

>>> # cheap prefix-based check; never attempts a demangling pass
>>> multi_demangle.looks_mangled("_$s8mangling12GenericUnionO3FooyACyxGSicAEmlF")
True

>>> multi_demangle.normalize_symbol("std::io::Read::read_to_end::hb85a0f6802e14499")
'std::io::Read::read_to_end'

>>> multi_demangle.classify_symbol("_Z1hic@GLIBC_2.2.5")
{'status': 'mangled', 'language': 'cpp', 'decorations': [{'kind': 'version', 'value': 'GLIBC_2.2.5'}]}

>>> info = multi_demangle.demangle_symbol_ex("__imp_?h@@YAXH@Z")
>>> info["status"], info["language"], info["decorations"]
('mangled', 'cpp', [{'kind': 'import-pointer'}])

demangle_symbol_ex returns a dict with mangled, demangled, status ("mangled", "unmangled", or "unsupported"), language, and an outermost-first decorations list; classify_symbol returns the same classification without demangling. Passing multi_demangle.DemangleOptions(normalize=True) applies the display hygiene passes to the fallback when demangling does not succeed, and Normalizer.matching() provides the pass set for cross-symbol matching (memcpy@pltmemcpy, __imp_CreateFileWCreateFileW).

Structured demangling

>>> info = multi_demangle.demangle_symbol_structured("_ZN3std2io4Read11read_to_end17hb85a0f6802e14499E")
>>> info.language
'rust'
>>> info.name
'read_to_end'
>>> info.namespace
['std', 'io', 'Read']
>>> info.kind
'method'
>>> info.hash
'hb85a0f6802e14499'
>>> info.parameters is None  # legacy Rust encodes no parameter types
True

demangle_symbol_structured returns a DemangledInfo with read-only getters (display, simple, namespace, name, kind, parameters, return_type, hash, template_args, is_generic, mangled, and class_method for ObjC) plus to_dict() for JSON serialization. It returns None for symbols that are not mangled in any known scheme.

CLI

A c++filt-style command line tool ships with the crate. Install it with a Rust toolchain (or use cargo run -- from a checkout):

cargo install multi-demangle

With arguments, each argument is demangled to one output line. Without arguments, the tool runs in filter mode: lines are read from stdin, every whitespace-separated token that looks mangled is demangled, and everything else passes through unchanged — so it composes with nm / objdump pipelines:

$ multi-demangle _ZN3foo3barEv
foo::bar()

$ nm libfoo.so | multi-demangle
$ nm libfoo.so | sort | uniq -c | multi-demangle -n --normalize

Hyphen-prefixed symbols such as ObjC selectors are accepted as values, so the obvious invocation just works (and -- works too):

$ multi-demangle '-[Foo bar:blub:]'
-[Foo bar:blub:]

Options:

Flag Effect
-n, --name-only names only, no parameters or return types
--no-parameters / --no-return-type individual output toggles
-l, --language <LANG> force a backend instead of auto-detecting (cpp, rust, swift, objc, objcpp, d, fortran, kotlin-native, ada, scala-native); forcing fortran also enables the plain g77 name_ form
--normalize apply the symbol hygiene passes (__imp_, @plt, ELF versions, Rust hash suffixes and $-escapes, .llvm. clone suffixes, pseudo-symbols) to symbols that cannot be demangled, then demangle the cleaned symbol when it succeeds
-s, --structured print one JSON record per symbol with its status, language, linker decorations, and the structured fields (name, namespace, kind, parameters, return type, generics, hash)
--list-languages print the supported languages and the backends enabled in this build
--color=auto/always/never colorize successfully demangled output (auto is the default)

multi-demangle --version prints the crate version together with the enabled backends. Exit code is 0 on success — including when nothing looked mangled — and 1 on I/O errors.

$ multi-demangle -s "_Z1hic@GLIBC_2.2.5"
{"mangled":"_Z1hic@GLIBC_2.2.5","demangled":"_Z1hic@GLIBC_2.2.5","status":"mangled","language":"cpp","decorations":[{"kind":"version","value":"GLIBC_2.2.5"}]}

In filter mode with --structured, records are emitted only for tokens that look like symbols or that the pipeline changed — under --normalize, a cleaned token such as bar.llvm.12345 is reported — while plain addresses, type letters, and words are skipped.

--normalize never touches directly successful demangled output; the passes run on the symbols the demanglers rejected, and the cleaned symbol is then demangled once more — a version-suffixed _Z1hic@GLIBC_2.2.5 comes out as h(int, char). Because .llvm. clone suffixes and legacy Rust $-escapes appear on names that do not classify as mangled, filter mode processes every token while --normalize is active:

$ multi-demangle --normalize bar.llvm.12345
bar
$ multi-demangle "_Z1hic@GLIBC_2.2.5"
_Z1hic@GLIBC_2.2.5
$ multi-demangle --normalize "_Z1hic@GLIBC_2.2.5"
h(int, char)

Development

Use uv package manager.

uv tool install maturin
maturin develop --all-features

Run the Rust test suite (includes the vendored Swift demangler build):

cargo test --all-features

Run the Python tests against the locally built module:

maturin develop --all-features
pytest python/tests

Run the criterion benchmarks for the batch pipeline (uses the real-symbol dumps in tests/corpus/; regenerate them with scripts/collect-corpus.sh when the producing toolchains change):

cargo bench

The Swift demangler is a minimal subset of the Swift standard library sources vendored under vendor/swift; see vendor/swift/README.md for how it is maintained.

Updating the vendored Swift demangler

A single command syncs vendor/swift from upstream (shallow, blobless, sparse clones), auto-adds headers new to the demangler's dependency graph, records provenance in vendor/swift/SYNC.md, and runs the validation gauntlet (cargo test --all-features, the Python tests, and an ASan/UBSan pass over the real-symbol corpus):

scripts/sync-swift.sh                # newest swift-*-RELEASE tag
scripts/sync-swift.sh swift-6.4.0    # or an explicit tag

A monthly CI workflow (swift-sync-reminder) opens an issue listing upstream commits that touch lib/Demangling or include/swift/Demangling since the last sync, so the vendored subset never rots silently.

The supported-version claim above is backed by per-toolchain corpus snapshots: scripts/collect-swift-corpus.sh compiles a fixture with a concrete Swift toolchain (pass its swiftc to represent another one) into tests/corpus/swift/<version>/, and the swift_corpus test pins the exact rendering. After a sync that changes output, regenerate snapshots deliberately and review the diff — downstream consumers (blint) match on these strings:

MULTI_DEMANGLE_UPDATE_SNAPSHOTS=1 cargo test --all-features --test test_swift_corpus

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

multi_demangle-2.0.0.tar.gz (395.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (949.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (943.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (946.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (939.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (939.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp314-cp314-win_amd64.whl (759.7 kB view details)

Uploaded CPython 3.14Windows x86-64

multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (937.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (844.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

multi_demangle-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl (867.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

multi_demangle-2.0.0-cp313-cp313-win_amd64.whl (762.2 kB view details)

Uploaded CPython 3.13Windows x86-64

multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (937.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp313-cp313-macosx_11_0_arm64.whl (842.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

multi_demangle-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl (863.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

multi_demangle-2.0.0-cp312-cp312-win_amd64.whl (760.3 kB view details)

Uploaded CPython 3.12Windows x86-64

multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp312-cp312-macosx_11_0_arm64.whl (843.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

multi_demangle-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl (865.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

multi_demangle-2.0.0-cp311-cp311-win_amd64.whl (762.7 kB view details)

Uploaded CPython 3.11Windows x86-64

multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (940.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp311-cp311-macosx_11_0_arm64.whl (846.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

multi_demangle-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl (862.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

multi_demangle-2.0.0-cp310-cp310-win_amd64.whl (759.7 kB view details)

Uploaded CPython 3.10Windows x86-64

multi_demangle-2.0.0-cp310-cp310-win32.whl (703.8 kB view details)

Uploaded CPython 3.10Windows x86

multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (945.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (940.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp310-cp310-macosx_11_0_arm64.whl (846.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

multi_demangle-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl (862.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (947.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (943.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_i686.whl (7.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl (7.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

File details

Details for the file multi_demangle-2.0.0.tar.gz.

File metadata

  • Download URL: multi_demangle-2.0.0.tar.gz
  • Upload date:
  • Size: 395.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for multi_demangle-2.0.0.tar.gz
Algorithm Hash digest
SHA256 f7f1ffe72dfd8805dd94c9bfba4e8f1095c20a5f6cdd2ee6d5996dda08af6439
MD5 667a2f3f4cdc248b3e7de596a673d928
BLAKE2b-256 8a10e479fa436732cd060b0a5a9f490154c861585433c65d0c76231069f2f09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0.tar.gz:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d368c050424c026aee6f9121bd68660273f34686856af22e023cfa523bad663
MD5 42f65d0541a26fca587da6052e39c02a
BLAKE2b-256 7494458587e37c0685571ce68fdd66e2bbbd1d27df58abeab2a2a8138e2af14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 470240de400c53e08834635bff9fb016f909c9db40cb32f65eafcf379ececbad
MD5 5cd244b018c7278673f5343c64b54645
BLAKE2b-256 109e2441d125ff08496cf4c44666311c5a6f108208f354ac7417ecffec1e1723

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f461f1da7b70f48317aa028b998641bedb319536960a407aa7e9cbab8e2504f1
MD5 631b71957646ee2eb75534db547a0276
BLAKE2b-256 b49ac57592bf4f4993f10e50dde7a774c2ef2d1c9c83f658c6549ba7a678320b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb2196947397f1f5ac186cd58c60868f16a7a5bc2b3bc8af985b630430b00a08
MD5 020042c5eea49d3ce20e8a7d9d91f83f
BLAKE2b-256 749b83f4cf019b52e001f88a4f19118dad2f369e9e75e3f4fbc0c44edd23ddf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffcb7cef97f2cba4c6aed5ab17b10f3c3f9c22cedd349ff349d44abeecef10cb
MD5 59d2d7ac3e8208435780af0b62bc6b07
BLAKE2b-256 2ab3544cd8f4d77d2b5ed49740044f2697e9e3a807710a4bcc638fe44a581ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 487fd812772b60807c3c3543188c34350211f2bd43f3cc68f48a4bd8aef80a43
MD5 03646b16194188054f0d20d1e6ed2f66
BLAKE2b-256 c9c917fd66268223a9a9dfa63559cc0896fcafd26740ccae498ac6cff8fd191c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7c219a46b98af28c837393bafa4259f0534bc0ee72ce24b13310afb1fcf22f6
MD5 d3fd42d6810b104978884216099db06b
BLAKE2b-256 6835621a319d031c7c49f4482408ab797a33acb489e90afe6f3af0f3acb74b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d70d5209ecfd9e76fe474ac849efc4b38826384fcdd22c65391d1c9aa6e7cce
MD5 eefcf534ccb9caecef823a7a1bab0c21
BLAKE2b-256 c7e2c999ced8e83c362035e7df1c0d166b118fc1ea568b01e42cc56310ec68de

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d638b6c71be0e62272011af6b2b68ca0759f7e4fd459784c05894359f1c9215
MD5 fe2f2de147fc9ebf2ecb5b38c68204c8
BLAKE2b-256 ac99e876541be63ab468d1305bfd81f91f56c3db65745adfba2f317492bc9047

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbc5cf6d7990e2161f3bc8008b152a2071e8f999a19ec06ca27c7d44a26000ce
MD5 fc5a709250a420bb52cc6c387c33fe5c
BLAKE2b-256 5212a396142f033eee70cf788d192bb9eb6b0eb849fd49ed211f11f26fd8f7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e413b228ac27ce12024d2cb333febbda85149b337abc423c11438223cbf455c
MD5 cfc3835c96a0f149db1b2a62bb203390
BLAKE2b-256 3ce5f3b223cbfc26636c92700763feb629f68fda94f3c3c6ab6de9e4e73e14a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80c606f6828b094a20784ad5be1af3ca2c85dbea9e6fd514806323f8e313a2da
MD5 52cee2c3b6ca85318671da27a8afdfbc
BLAKE2b-256 f18a91573cc3201d341c96515051fdb720b25edb757f1cf660cc995e180706a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6956106947c164d09d9a4a0377a3da361a3d44f8ef6d856d3d924f69b5c7b5a3
MD5 aa03ddaea4cff0a767dfa15c376438ae
BLAKE2b-256 6d37dfb0883eaabb291ad7eaeaf17f939e355ac2b6ec2d92e6b4bb819f04ca27

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89a3fcff606f172528a5f44de7e95715ca0ba2f8096f961a611cdc35dcec23ac
MD5 ca9d0a447c267a7017c402f835eb1a43
BLAKE2b-256 ae9e609b6f423a6c95b33b5ed8bd4ad339ac9d25cd8f1e3939077e239712a734

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a21e59e298165fe3f8ca394582d8130aebd71000b80c01c3d7b3d26fbfe35837
MD5 fba1166ee58756cf966d589386f8c0fe
BLAKE2b-256 99449f8d29b8417743d6ea35d1a8e6d145b2a1976932f35b72d42d6ebc9059ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b77286d4c8265f7c2141bf3bff3feb67bb971759a65f76926abd59d8f2531f88
MD5 adcd6b33b8376e532bab99e3540d9def
BLAKE2b-256 65f246ac509754d2c6dbe5701776ad86abbeda644c40df8a5233b3dae5bedec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7c563b20873617c99200176fb976259f9d9f0cd6002763d82d7e407c664ce8d
MD5 05c23cab875b38edbc81a99c0557d17e
BLAKE2b-256 f27234b6ae3a34b97a1d17cc15c9f351146d04aa98517b7c63501c3cf249e233

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7ea825dd9478949cccacced0f0a1af4a8b4590198c8e9dfbad40599eb50e367
MD5 ce1fd56c57bf55e18c082af73e584f0b
BLAKE2b-256 d04265fdb14eee7eaf07c6379b213b2ac42a2068facb492ec1eeb6f36dc59fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 33d32231ea1a2afd18a5c7776d0fea0e740aaf28200c99e37c20018bb6055950
MD5 29616e9dc9b2ec0dec7d69ef02be24f1
BLAKE2b-256 a7043e86fe167087f63a12307703556076fccb5790993ac5aab0b8e766eb5c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4122562f9605408d63ea2222d8295f23e28a3d5a67e780fc4990660af900cc0c
MD5 77ab666254353845619b7ac338bbc70e
BLAKE2b-256 645b151a205283c11266976fcef7af37fd820dc1c341208a0bd5f51d595cbe5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44e749ab0ed6d70dcd90cd38c520e2345452f00e225f99054affab015099ad23
MD5 11bf73eda587ea12dc4b97c5d979471e
BLAKE2b-256 b49af675c8f9930316789ca15ec9cb2f8127b7aad2c199946b25a42b4569096e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 625e155599941db20d5ffe9d3da954de1ff9ad3847b32d796aeda6a3ba6cd179
MD5 00a0cf7bd06f8ca2e4e21d1a73396027
BLAKE2b-256 5cdd14e6d551d62c6f5f9542ba1c9c57376e3cec5787061427c32dbad2295511

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3f13ac573acd5796684e85a7245903062943ddf0bc4d9251fa01a19f371a79a
MD5 d65c63b358847ab4ebd5e21a4cdaf320
BLAKE2b-256 cb2b0d10cc1746c3b725e89eb9a77afa8f59d91db459d155cedc1bfe90f96a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1060522d44d7b811f06908b1b86eb695801a5592a40bc7dea7b5f1b17f1658d2
MD5 563346e064782578e38aa4eb642dce96
BLAKE2b-256 f196d4477d4505cf43c0b28b5f0f101a3948eeb50e26e1bb641e13eaa0666a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13a8dedb38fedce7f33ec99c6db2789ae40c95929e8027feb353ae40b1062b13
MD5 69ae2515fff093ec5b25a5c343718eea
BLAKE2b-256 c84b5bef2062fe0e56cf7ea84b022110acf82763d707b9e94f2a84ab9519ad44

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 101a0fa18fd85e061ffa283b06c67dabda179a05d31835950865b06765b687d0
MD5 07c3bccaebb8cf44bc45660658c08653
BLAKE2b-256 775b56af038466991b67292bb75554cbc9377d017f9a2a0d8d649d17961f0bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a02c21d815375bae3832add118d4744491c37d4ca3e6dca0b77be25c4852a27e
MD5 71d65c80c314722128b74d4230499948
BLAKE2b-256 231f75dbc10ae7738969170d49aa62effe626fd68176fe72e0584baa9ed2b301

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81efd0adc7560c685805e4a35828d0b1075d498e3b72938910387d78acadd820
MD5 2e1c6b27c6177ee17d21965efe284294
BLAKE2b-256 4cdd0f7e379012264c0c37c0d7b52d93413630bad1904e8200537006935a8627

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86cc4291c4bcc97ceded624783fa27328fb5f9b8c2dfe1ada556df0986afdee6
MD5 a766377d5c3db5f5b1f0ad067c98bcf6
BLAKE2b-256 3f5f3c2f56c311dfee2cebc25d173127b7e85d26c4c8ebb83bd4e52089a32b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 847205b539b65343ec27a06140ef95863d083c03a50bc27c1f4fb3fa551a031e
MD5 fe7e23b9de4859ada534eb95d4724ae4
BLAKE2b-256 b14f6f0f66ddc081b7b63fe83886b70a1a2be6a00196dcb4c47077b5175c0c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc81da7d509e79f9175f7a6eda844062522d936ba90ed0de31e59d70382b766e
MD5 3a0442c31487778f299900661f42253e
BLAKE2b-256 820de24ddcabf36e59f149f65ce38c13a11d5a695ba1e306abae5a4137d8b222

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a57b4fd67ecf6af28ba79edb559fef6038361d78e52bab54bb9c66d5f582a6fc
MD5 dc41b15371351b0c8c4b195bcab9c9dd
BLAKE2b-256 f2284dc3914d0dca3bdf0b43350effb9be9d1a103397037e5ece0894ca1968f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 204d1a56964e46d47d14c40b9f14726863bef05f4288c1d21985b63d101bb7f8
MD5 d4e3466ed7980e5e2b3f56dd79e2bfaa
BLAKE2b-256 b88e68cfb833eb3be7fb06107ad74e647c21cdaaa659df1499cd54ca9bf129f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0cdf28246ad3b257f428642173eb95bcd3fa0ef6010a2ec22a3b13d7d72dd46
MD5 8b150da3016457b622abd293fa1514b0
BLAKE2b-256 0a40a99e591db3ff82eceb0d35cca25773930b28f140fd6752f766b763f39857

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90b33f7fe894113208153177571c1afe166231c6d0e9248c420e4e0ccfdf6222
MD5 4b4d905f45fd77386e7d8167125c3228
BLAKE2b-256 001e8791367efd3eb30cb207793df2ee412c306749739ff411acef5f905af943

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eac0ad9f7e3a7a7be9ffcb4fb67196a2ff3ce97ae1fcd13257eaef02cacc003a
MD5 641dec0a8cda2113f7ae951171960e08
BLAKE2b-256 98d058f999b6e32fae3f001e6d19007c6b05386ea2cdbabe60182144b6fdac8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f4bc10e3ace0729ac5f8d4f7e0fb0841d904fba7e287840f6573cf742bd7515c
MD5 50a821139738658a2eda1e0c1df4438a
BLAKE2b-256 20b8a053cb6c1ae88e9dfeafe7818bcceb0232ddc2efb1c75b8743122828381b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a8cfb4793ab528beb36a5adc591f81e4bc3a8ab66d3574cfe5797dc0d2e2432
MD5 fc6a30c3d4ee93b8892d4b5b5d58b99d
BLAKE2b-256 85a805dc480a718da91ee512b611d6865fcc276423cf18413453d561cb19ead4

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ac6939f2e4642ae0289ac55d097b24052eb81e371ca0204a65e9b5a321659b4
MD5 95d1bbb96ff8c3b06c58a2ddcd2376bd
BLAKE2b-256 11cb2968a96e6131f50f2bc3dad9c7382318c745f888c1db30f0115a593fc48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6c735c55e29cac23cbd48f1cb6dd1a9950af7834d3ae7b3457ff4c452011278
MD5 75580b032dab91fe1855d59deb26b17b
BLAKE2b-256 03b33bcb8285c2a969307205fb5dcb727898e204d4676f3de5b4bb9620510bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4658e2e99c581c72c203fe13659657f0a35fd8631b954a467762684a2eaab7ad
MD5 42117a2d1e0933bd71b61c6e4bcd6b1f
BLAKE2b-256 f34d193114876a6865159e98a778e696b464190970b27315f0cda10873aae095

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3544791876f4546c1fb05cb7694222b445a52698b764ffecf5eb93b435d89724
MD5 8fbc08dbba902d8f981a794737561b5b
BLAKE2b-256 a0826f656b6b8d4d0f2dfc79ff373432c984b5513c8d983630b95571af77599b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6b15fec62a577e8f2137ef40cf54523ff11c8fe3dfd330ca29a514a33d73016
MD5 cc50d8085d5d4683bff90ffff3a9d406
BLAKE2b-256 5eabec66aedc30eaa61f90ba4d5183d4650a8312986f16e718a7dcb017384e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b75492b5e341f00ea81d40cdb0fb14ac441c75db546dcae8ae475ea5ab49a3b5
MD5 683917ff2235781246cf3d5314363859
BLAKE2b-256 7aa92ed962332117a115668a86b164f99ad1b450b4c44bae0ae2a7966497d128

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffaa808f6f5e11bf85c2821ddb675ca83a236b715356b57766667686593f7097
MD5 76154ddc24d70b312b7af2cd81dda570
BLAKE2b-256 6767fbfe0da99f71ba9dd909d108b7d10dc006663083d01938127bbd61a776e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 19fe0b4c7cdcc034bd16a2af0aa2e3521defbeeb59efe1587879e9f9b2c82621
MD5 1517a8475ab466be74a199f2a012a265
BLAKE2b-256 9f9870e75c0109ad9577c2710e5935f85391f6324c29d32fd19d6a5de9551a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce51c639afd6c8ba57b69e3dfac2ab619967f1d39a3fb6b433f0bda90229b58a
MD5 3fcaca5661c86745ec12835dc4fe3607
BLAKE2b-256 8a22614085c7c34dda42c21a0f62ff70c6f9a5baafabf6c60d8091ab74e14c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1800571bef5cc19bbbb125602fb662ad5ffb07bc948eb4fc732d1d8a2dacf910
MD5 d79c4997df2ee2eba0a0c15899147710
BLAKE2b-256 0dbf75f616d22cef0ddf8238beea11b8bce7b0c2bcb2f90cac060d6bb115bf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344a98bb9ff2280eaa6577e3b643d23fd5c9998d6fa2cde5112a8750c03a7c55
MD5 01ba86a862693331c878a2d6bdeea608
BLAKE2b-256 7375653e4fca3f6d0ae5b588d50e6be6309b12577388ad9afd32fb7dd9f4bc25

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ea285a305be0282a6fa61633c0f46b7243072c1e1dc0839a3dea4abb6f714ff
MD5 44aa9b1f73a1d2d6345a7915b291ed18
BLAKE2b-256 4e5e15b2afe35711dc1ba0d453bd0ce63bc3d17c4e293d1c5be12d2916b078a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96d30647b1981d023c3432774e66dcc998a4d9feaed9597cfe5478a30de9321c
MD5 8e76a0a5021a6d499ccc0a1ea2e6a05b
BLAKE2b-256 76e0a9418f55d7e5c524dde7eed241b9816e30f21cb95b0900196fd5a0c0bd55

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e59ca454e4da7f3fb7d8346479c6aef4bed7516218ccf5019c4740161fe80c5c
MD5 1b40564d2d092583efdd3bdc08f3001f
BLAKE2b-256 a77904b95cba16664e1e065fd6a2532aa3edafe18b610503f7ae8a3e49a229be

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c57967f5684256ba998061a3474ff4f91b0c90eb607cea7dfac47c23a10fc7d
MD5 f7b59fd6d2924d584786c4ac28ac2075
BLAKE2b-256 4f33529c0a5c8784d7405e5af027a058b3d1b8585d4153fc7ac4d52b319c7dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9bfbf5d091f723bb81d2b0831bf96533a4ed35e6516cbf51cc14a83c71a009ab
MD5 cec2f5723cd4235e70a36a885a269dbf
BLAKE2b-256 00312ca446f7d7f3fce77cb4008826208ebece667323bb20f3ced12b3019e9e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 145617a12bc003d1018a16ba06145aa819e2c2248427ac9d10fe632750d6ca13
MD5 76b8aa549a3e24e22aea247912a748e6
BLAKE2b-256 82533cc42b81a93bd2a8508a5da0c748d7d31b00bc4c261e3cb6862a0574d1b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: multi_demangle-2.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 703.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eb86acb7784224038b588afee7fb446df4f3edbf7839ef33a1f27c7e9cbef080
MD5 648bf43ec6d8cfdf8d900489cec360bf
BLAKE2b-256 d10e4f18002a797dc7e404055ae984872ce8befdb5f9c3cb160e84687caa3743

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-win32.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a21cc50ba94bc5925e93b50fb1095b52c8ae08d27b002097184aa23363c101e4
MD5 6c06cfb3c4c6111d72df8905f8795beb
BLAKE2b-256 aeaf943d56147d61cb5c3293e8139d22790707a8bf1788549178fee12d72cca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a567c1aa29f20443d1be36b5cea847d950cc83d3aa6cd62ed32ba7717eab33c
MD5 97709668a5f814d825ea8f36c446ddd2
BLAKE2b-256 155d3d6b5e12158db014e26b1e0316a1faabbe6b4ff2e1f1ab18a4b76ae3657b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0b9011fbb929d680e9e830db12b1b9bd006f71aba52a65ea688c3957abe005f
MD5 7990aa7ce3279dfd6e6ffd5c2b74050d
BLAKE2b-256 da9b77ea3583971d54ca2ed8647657664814187050a68560b96daadd60f4fe77

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cc47686b8a875dc72a6a54471bf5002f5ec52dbfa62f64135290a45efde4bd1
MD5 a154c50089e2187b08f47420cc64c30b
BLAKE2b-256 c24b6ca7559c46bce6199a2bbe14681b1c42fdc7549350bc0edeea0bbb21ec09

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ceb65cbf529ea055d7e5b76017628d14c12d5e2616a1674809f9771608ca0937
MD5 54ada2647d44da7a97119632d31ef1f8
BLAKE2b-256 a14ebfc57828f101e48f0c4260bd31e5732f0ebd6c7c9a6b521746bc82c8dd34

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801e27b082249b75fabdcd3e2390cf2e81b7fc21c5ca3da7bfc4f33397de9cc5
MD5 7166905ad45036702f80bbee0924706c
BLAKE2b-256 c235aea6aa67ff87f53924a26991dfbe87d4048b571732654b702c8fb14e7df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cee5a0406e5cdd577743c770b6200f372381ffe7f545389a045e74b6f59271a
MD5 d8e043114c8c353e3e47ab47f4727863
BLAKE2b-256 b7ccfd843cfb52020847782716da0877be91052b10c44752288b658a1cdfd43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 517286f2da2136dbdcc2ab916fed5d27aff8e911dc75e673e1ec90994b3da539
MD5 bd8fc7c23e25a717d2a99410f22cef6b
BLAKE2b-256 d21cf3a093dc6ef4b05e380d90319232317dc84d0809ea167759f03c83fd4005

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bd0f21262dec49a503048f4d207253f092da03da0a318dbe55768ede40a0aa7
MD5 0422b2942489a3b7e881ef6ed2429fef
BLAKE2b-256 a111883318d60df8942f3ce9d84dc8ca459ea4d7f86ae80fdab31de80289f46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 646b8f4b959afbfaa2bbe6a2b10632f9b902e83dc79abe63e15723572bbe152b
MD5 7b27c4562c71a2e7abc964d465c1b5b6
BLAKE2b-256 ec4196ce42ab6c357a998ce8904eeb38b5de86042cf5929644c007aa4293de8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1f13b3af16e4ab6f5f3cde0a422fe540f7e50b182ac8b3bb3eb1a7658aad0c5
MD5 c27618a2a8489ab41ab6a578a43f5fa5
BLAKE2b-256 01b5449d3048d1d0480299ab58001c123e290398a1fce4339f5718f7798fe4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d17f7d75daad885524631ee6cae872e75bd0741cbf3b54af1af7635e45d9eb0c
MD5 ef06c98dbd47111b241d1a62cde70799
BLAKE2b-256 b57131f6a5408b062a99fc96306fa153206673a465dc640f544bf87c956655f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d35449365ee530a15af95fb39a36030b438306ec6de3cabd7237d50bad3f6912
MD5 d67c2eaa0d1a2454a36e80a762899ef2
BLAKE2b-256 ae71733c4bb2e6403998fed3846087f1e42a38630d93da8cb759b134a1323b9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f593a540932740b56adad9baab6f4d9cec34f97c67cb38368dea412f1602f4e2
MD5 e8666b5dc50a577db9182385009ffa32
BLAKE2b-256 8e79cd407cfed6321dfbb87a7d4db0c241918bb4a6435cdbdb14bab9f9536e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a286114d58907f55b19c691f05b1f644daa45cf030a8679320a192fa918c2afc
MD5 b86286a5241c803ce1c6fa080d7fefef
BLAKE2b-256 1d13ef3c3337379fe1944fe25d34d7320732c990290b449e60c9f9a8947f295a

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eacb6a7ca877558587a0ff6a122e3b5832f38cfd1836d6a2363e9cde03bfa850
MD5 458a4dad079b027a5929ad3e609be12e
BLAKE2b-256 bcdc432f77e914b9f4c3fd68c7a84e260864a65e511a2ba5d310cfb39139cdbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d24f70e2092c045924c840fef1d2829f2758270ac4487011f2a0917661b919e
MD5 5b3717c6c3482fa56e4142f131f8e159
BLAKE2b-256 5d34ca110c87bc62c041e180e958cde3fde982ce9d087b442c79e444a91f267f

See more details on using hashes here.

Provenance

The following attestation bundles were made for multi_demangle-2.0.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on AppThreat/multi-demangle

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

2.0.1

74 files

This release

2.0.0 This release

74 files

1.0.4

59 files

1.0.3

59 files

1.0.2

59 files

1.0.1

58 files

1.0.0

69 files

0.0.1

69 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page