Skip to content

Commit 732bad6

Browse files
committed
Migrate to separate repository
0 parents  commit 732bad6

File tree

8 files changed

+663
-0
lines changed

8 files changed

+663
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
target
2+
Cargo.lock
3+
/tags
4+
.cargo

.travis.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: rust
2+
rust:
3+
- stable
4+
- beta
5+
- nightly
6+
7+
script:
8+
- make all
9+
- make travistest
10+
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then make bench ; fi
11+
12+
env:
13+
global:
14+
- RUST_BACKTRACE=1
15+
matrix:
16+
-
17+
- RELEASE=true
18+
19+
notifications:
20+
webhooks:
21+
urls:
22+
- https://webhooks.gitter.im/e/6d8e17dd2fa83b143168
23+
on_success: change # options: [always|never|change] default: always
24+
on_failure: change # options: [always|never|change] default: always
25+
on_start: false # default: false

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## 0.2.2 - 2016-11-30
8+
### Changed
9+
10+
* Moved to own repository

Cargo.toml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "slog-scope"
3+
version = "0.2.2"
4+
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
5+
description = "Logging scopes for slog-rs"
6+
keywords = ["slog", "logging", "slog", "log"]
7+
license = "MPL-2.0"
8+
documentation = "https://docs.rs/slog-scope"
9+
homepage = "https://github.com/slog-rs/slog"
10+
repository = "https://github.com/slog-rs/scope"
11+
readme = "README.md"
12+
13+
[lib]
14+
path = "lib.rs"
15+
16+
[dependencies]
17+
slog = "1"
18+
lazy_static = "0.2.1"
19+
crossbeam = "0.2.9"
20+
21+
[dev-dependencies]
22+
slog-term = "1"

0 commit comments

Comments
 (0)