diff options
author | Chelsea Holland Komlo <me@chelseakomlo.com> | 2017-10-11 15:21:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-10-27 10:02:08 -0400 |
commit | be583a34a3815c2c10e86094ab0610e4b7f9c869 (patch) | |
tree | be9ffef37a21f54a81e628c1911c9171bbeef202 /src/rust/Cargo.lock | |
parent | 0c04b54d4d78f7f3117948358b3d05e644fa1aeb (diff) | |
download | tor-be583a34a3815c2c10e86094ab0610e4b7f9c869.tar.gz tor-be583a34a3815c2c10e86094ab0610e4b7f9c869.zip |
use tor allocator for string allocation in rust
Diffstat (limited to 'src/rust/Cargo.lock')
-rw-r--r-- | src/rust/Cargo.lock | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/rust/Cargo.lock b/src/rust/Cargo.lock index aa91ea355c..56cb9d76ba 100644 --- a/src/rust/Cargo.lock +++ b/src/rust/Cargo.lock @@ -6,13 +6,6 @@ dependencies = [ ] [[package]] -name = "c_string" -version = "0.0.1" -dependencies = [ - "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] name = "external" version = "0.0.1" dependencies = [ @@ -31,6 +24,7 @@ dependencies = [ "external 0.0.1", "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)", "smartlist 0.0.1", + "tor_allocate 0.0.1", "tor_util 0.0.1", ] @@ -41,5 +35,12 @@ dependencies = [ "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "tor_allocate" +version = "0.0.1" +dependencies = [ + "libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)", +] + [metadata] "checksum libc 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)" = "babb8281da88cba992fa1f4ddec7d63ed96280a1a53ec9b919fd37b53d71e502" |