This was mostly just a change to the cargo edition target. I also went and removed the weave requirement. It was just a function wrapper around the ? operator that was new at that time. As this has become very common place I just swapped the code over to it.
20 lines
523 B
TOML
20 lines
523 B
TOML
[package]
|
|
name = "binding"
|
|
version = "0.1.0"
|
|
authors = ["Jason Travis Smith <Myrddin@CyberMages.tech>"]
|
|
description = "Defines macros and functions used when binding to C libraries."
|
|
license = ""
|
|
repository = "https://workshop.cybermages.tech/CyberMages/binding.git"
|
|
documentation = ""
|
|
keywords = ["binding", "c types", "c enums", "c flags", "c strings"]
|
|
edition = "2021"
|
|
|
|
|
|
[features]
|
|
default = []
|
|
use_std = ["scribe/use_std"]
|
|
|
|
|
|
[dependencies.scribe]
|
|
git = "ssh://gitea@workshop.cybermages.tech:3022/CyberMages/scribe.git"
|