forked from rust-embedded-community/tinyrlibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
24 lines (21 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "tinyrlibc"
version = "0.2.1"
authors = ["Jonathan 'theJPster' Pallant <[email protected]>"]
edition = "2018"
description = "Tiny, incomplete C library for bare-metal targets, written in Stable (but Unsafe) Rust"
license-file = "LICENCES.md"
readme = "README.md"
repository = "https://github.com/thejpster/tinyrlibc"
[dependencies]
[build-dependencies]
cc = "1.0"
[features]
# Set this feature to assume a C `long` is 64-bits (i.e. the C compiler uses
# the LP64 model, rather than the LLP64, ILP32 or LP32 models). See
# https://en.cppreference.com/w/cpp/language/types for more details.
lp64 = []
# Set this feature to assume a C `int` is 16-bits (i.e. the C compiler uses
# the LP32 model, rather than the LP64, LLP64 or ILP32 models). See
# https://en.cppreference.com/w/cpp/language/types for more details.
lp32 = []