-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
28 lines (22 loc) · 816 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
25
26
27
28
[package]
name = "arccstr"
version = "1.3.3"
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Thread-safe, reference-counted null-terminated immutable strings."
repository = "https://github.com/jonhoo/arccstr.git"
keywords = ["strings", "reference-counting", "cstr", "immutability"]
categories = ["concurrency", "data-structures", "memory-management"]
[features]
default = ["serde"]
[badges]
azure-devops = { project = "jonhoo/jonhoo", pipeline = "arccstr", build = "22" }
codecov = { repository = "jonhoo/arccstr", branch = "master", service = "github" }
maintenance = { status = "passively-maintained" }
[dependencies]
serde = { version = "1.0", optional = true }
[dev-dependencies]
serde_test = "1.0"
serde_json = "1.0"