Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description = "A string interning library for Rust, developed as part of the Ser
license = "MIT / Apache-2.0"
repository = "https://github.com/servo/string-cache"
documentation = "https://docs.rs/string_cache/"
edition = "2018"

# Do not `exclude` ./string-cache-codegen because we want to include
# ./string-cache-codegen/shared.rs, and `include` is a pain to use
Expand Down
2 changes: 1 addition & 1 deletion examples/simple.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extern crate string_cache;


use string_cache::DefaultAtom;

Expand Down
1 change: 1 addition & 0 deletions integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.0.1"
authors = [ "The Servo Project Developers" ]
build = "build.rs"
publish = false
edition = "2018"

[lib]
doctest = false
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
extern crate string_cache_codegen;
use string_cache_codegen;

use std::env;
use std::path::Path;
Expand Down
6 changes: 1 addition & 5 deletions integration-tests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@
#![allow(non_upper_case_globals)]
#![cfg_attr(feature = "unstable", feature(test))]

extern crate string_cache;

#[cfg(feature = "unstable")]
extern crate rand;
#[cfg(feature = "unstable")]
extern crate test;

use std::thread;
use string_cache::atom::StaticAtomSet;
use string_cache::StaticAtomSet;

include!(concat!(env!("OUT_DIR"), "/test_atom.rs"));
pub type Atom = TestAtom;
Expand Down
Loading