-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial cargo crate layout. (#3)
* Add initial cargo crate layout. This change applies the basic repository layout discussed in Fixes #1 * Extend Cargo.toml with more info
- Loading branch information
Showing
8 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
target/ | ||
Cargo.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[workspace] | ||
members = [ | ||
"opentracing-api", | ||
"opentracing-noop", | ||
"opentracing-mock" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "opentracing-api" | ||
version = "0.1.0" # remember to update html_root_url | ||
authors = ["The OpenTracing Developers"] | ||
license = "Apache-2.0" | ||
homepage = "http://opentracing.io" | ||
repository = "https://github.com/opentracing/opentracing-rust" | ||
description = "OpenTracing API for Rust" | ||
documentation = "https://docs.rs/opentracing-api" | ||
keywords = ["opentracing", "tracing"] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#![doc(html_root_url = "https://docs.rs/opentracing-api/0.1.0")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "opentracing-mock" | ||
version = "0.1.0" # remember to update html_root_url | ||
authors = ["The OpenTracing Developers"] | ||
license = "Apache-2.0" | ||
homepage = "http://opentracing.io" | ||
repository = "https://github.com/opentracing/opentracing-rust" | ||
description = "A OpenTracing Mock Tracer" | ||
documentation = "https://docs.rs/opentracing-mock" | ||
keywords = ["opentracing", "tracing"] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#![doc(html_root_url = "https://docs.rs/opentracing-mock/0.1.0")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "opentracing-noop" | ||
version = "0.1.0" # remember to update html_root_url | ||
authors = ["The OpenTracing Developers"] | ||
license = "Apache-2.0" | ||
homepage = "http://opentracing.io" | ||
repository = "https://github.com/opentracing/opentracing-rust" | ||
description = "A OpenTracing Noop Tracer" | ||
documentation = "https://docs.rs/opentracing-noop" | ||
keywords = ["opentracing", "tracing"] | ||
|
||
[badges] | ||
maintenance = { status = "actively-developed" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#![doc(html_root_url = "https://docs.rs/opentracing-noop/0.1.0")] |