8fc191540e
* rabbitmq 0.1.0 (via `alr publish`) * fix: Dependency declaration missing in alire.toml * fix: librabbitmq-external.toml missing * fix: MacPorts is missing librabbitmq * fix: Typo in TOML * fix: library not available on CentOS * fix: wrong mingw library name * fix: Gentoo dependency missing * fix: macports and centos library names * Disable CentOS and Gentoo * fix: Platform support enabled in wrong file * fix: Missing depends-on in manifest
27 lines
635 B
TOML
27 lines
635 B
TOML
name = "rabbitmq"
|
|
description = "Ada bindings for the librabbitmq C client library"
|
|
version = "0.1.0"
|
|
|
|
authors = ["Jochen Lillich"]
|
|
maintainers = ["Jochen Lillich <hello@geewiz.dev>"]
|
|
maintainers-logins = ["geewiz"]
|
|
licenses = "MIT"
|
|
website = "https://github.com/geewiz/rabbitmq_ada"
|
|
tags = ["rabbitmq", "amqp", "message", "queue"]
|
|
|
|
[[depends-on]]
|
|
librabbitmq = "*"
|
|
|
|
[available.'case(distribution)']
|
|
'debian|ubuntu' = true
|
|
'fedora' = true
|
|
'arch' = true
|
|
'homebrew' = true
|
|
'macports' = true
|
|
'msys2' = true
|
|
'...' = false
|
|
|
|
[origin]
|
|
commit = "cf05eeb7b9c85a6a23fff7f57e4910bd3d38fd88"
|
|
url = "git+https://github.com/geewiz/rabbitmq_ada.git"
|