summary refs log tree commit diff stats
path: root/Cargo.toml
blob: 1cf8088d418ff814249f0395b0ee9733fe60cd92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "ltptr"
version = "0.1.0"
edition = "2021"
license = "CC0"
description = "Checked raw pointers."

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
# our expectation is that the ppl using this want the CStr methods by default.
default = ["std"]
std = []

[dependencies]