# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "tinyrlibc" version = "0.4.0" authors = ["Jonathan 'theJPster' Pallant "] description = "Tiny, incomplete C library for bare-metal targets, written in Stable (but Unsafe) Rust" readme = "README.md" license-file = "LICENCES.md" repository = "https://github.com/rust-embedded-community/tinyrlibc" [dependencies.portable-atomic] version = "1.6.0" optional = true [dev-dependencies.static-alloc] version = "0.2.4" [build-dependencies.cc] version = "1.0" [features] abs = [] all = [ "abs", "strcmp", "strncmp", "strncasecmp", "strcpy", "strncpy", "strlen", "strtol", "strtoul", "strtoll", "strtoull", "strtoimax", "strtoumax", "strstr", "strchr", "atoi", "utoa", "itoa", "snprintf", "isspace", "isdigit", "isalpha", "isupper", ] alloc = [] atoi = [] default = ["all"] isalpha = [] isdigit = [] isspace = [] isupper = [] itoa = [] signal = ["dep:portable-atomic"] signal-cs = ["portable-atomic/critical-section"] snprintf = [] strchr = [] strcmp = [] strcpy = [] strlen = [] strncasecmp = [] strncmp = [] strncpy = [] strstr = [] strtoimax = [] strtol = [] strtoll = [] strtoul = [] strtoull = [] strtoumax = [] utoa = []