Skip to content

Commit

Permalink
feat: add many String inherent methods and functionality (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
cakekindel authored Apr 24, 2023
1 parent 2bad704 commit 6ee3d8c
Show file tree
Hide file tree
Showing 4 changed files with 316 additions and 17 deletions.
17 changes: 9 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions toad-string/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@ maintenance = { status = "actively-developed" }

[features]
default = ["std"]
std = ["alloc", "toad-array/std", "toad-writable/std"]
alloc = ["toad-array/alloc", "toad-writable/alloc"]
std = ["alloc", "toad-array/std", "toad-len/std", "toad-writable/std"]
alloc = ["toad-array/alloc", "toad-len/alloc", "toad-writable/alloc"]
test = []
docs = []

[dependencies]
toad-len = { version = "0.1.3", default_features = false }
toad-array = { version = "0.2.3", default_features = false }
toad-writable = { version = "0.1.1", default_features = false }
tinyvec = {version = "1.5", default_features = false, features = ["rustc_1_55"]}
Loading

0 comments on commit 6ee3d8c

Please sign in to comment.