Removed the scribe and weave requirements. Scribe was only being used in the build, so it was switched to print statements. Weave was being used for error, but it was switched over to the Rust core and std error versions.
25 lines
543 B
TOML
25 lines
543 B
TOML
[package]
|
|
name = "pact"
|
|
version = "0.1.0"
|
|
authors = ["Jason Travis Smith <Myrddin@CyberMagesLLC.com>"]
|
|
description = "Rust bindings for standard C functions."
|
|
license = ""
|
|
repository = "https://gitlab.com/CyberMages/Core/pact.git"
|
|
documentation = ""
|
|
keywords = ["c", "libc", "binding", "ffi", "pact", "nostd"]
|
|
build = "build.rs"
|
|
edition = "2021"
|
|
|
|
|
|
[features]
|
|
default = []
|
|
use_std = ["binding/use_std"]
|
|
rust_lib = []
|
|
no_mem_manip = []
|
|
weak = []
|
|
|
|
|
|
|
|
[dependencies.binding]
|
|
git = "ssh://gitea@workshop.cybermages.tech:3022/CyberMages/binding.git"
|