diff options
author | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-25 22:21:48 +0200 |
---|---|---|
committer | jakobst1n <jakob.stendahl@outlook.com> | 2024-06-25 22:21:48 +0200 |
commit | 93d64ae68b2ee271b3a8215c50925f492778e5ef (patch) | |
tree | 5ad700b27c0d06345def609f5ef09145e6870505 /Cargo.toml | |
parent | c82432863462bc893b5e1cc2e56fe1bfa9f4ba23 (diff) | |
download | textgraph-93d64ae68b2ee271b3a8215c50925f492778e5ef.tar.gz textgraph-93d64ae68b2ee271b3a8215c50925f492778e5ef.zip |
Remove dependency on libc crate
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,13 +1,12 @@ [package] name = "textgraph" -version = "0.1.0" +version = "1.0.0" edition = "2021" [features] default = ["libc", "ansi"] ansi = [] -libc = ["dep:libc"] +libc = [] [dependencies] -libc = { version = "0.2.155", optional = true } |