Skip to content

Commit 390ede8

Browse files
committed
Migrate to it's own repo
0 parents  commit 390ede8

File tree

8 files changed

+575
-0
lines changed

8 files changed

+575
-0
lines changed

.travis.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
language: rust
2+
rust:
3+
- stable
4+
- beta
5+
- nightly
6+
7+
before_install:
8+
- sudo apt-get update -qq
9+
- sudo apt-get install -qq graphviz
10+
11+
script:
12+
- make all
13+
- make travistest
14+
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then make bench ; fi
15+
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo build --no-default-features; fi
16+
17+
env:
18+
global:
19+
- RUST_BACKTRACE=1
20+
matrix:
21+
-
22+
- RELEASE=true
23+
24+
notifications:
25+
webhooks:
26+
urls:
27+
- https://webhooks.gitter.im/e/87a331e1a21456b6e2ad
28+
on_success: change # options: [always|never|change] default: always
29+
on_failure: change # options: [always|never|change] default: always
30+
on_start: false # default: false

Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
name = "slog-example-lib"
3+
version = "0.1.0"
4+
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
5+
description = "Example of a library utilizing slog-rs"
6+
keywords = ["log", "logging", "structured", "hierarchical", "example"]
7+
license = "MPL-2.0"
8+
documentation = "https://dpc.github.io/slog-rs/"
9+
homepage = "https://github.com/dpc/slog-rs"
10+
repository = "https://github.com/dpc/slog-rs"
11+
readme = "../../README.md"
12+
13+
[lib]
14+
path = "lib.rs"
15+
16+
[dependencies]
17+
slog = { version = "1", path = "../.." }
18+
slog-stdlog = { version = "1", path = "../stdlog" }
19+
20+
[dev-dependencies]
21+
env_logger = "0.3.5"
22+
slog-term = "1.3"

0 commit comments

Comments
 (0)