File tree Expand file tree Collapse file tree 17 files changed +49
-27
lines changed Expand file tree Collapse file tree 17 files changed +49
-27
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " prost"
3
3
# NB: When modifying, also modify html_root_url in lib.rs
4
- version = " 0.1.1 "
4
+ version = " 0.2.0 "
5
5
authors = [" Dan Burkert <dan@danburkert.com>" ]
6
6
license = " Apache-2.0"
7
7
repository = " https://github.com/danburkert/prost"
@@ -38,5 +38,5 @@ bytes = "0.4"
38
38
[dev-dependencies ]
39
39
env_logger = " 0.4"
40
40
log = " 0.3"
41
- prost-derive = { path = " prost-derive" }
41
+ prost-derive = { version = " 0.2 " , path = " prost-derive" }
42
42
quickcheck = " 0.4"
Original file line number Diff line number Diff line change @@ -287,6 +287,6 @@ generated code examples above.
287
287
288
288
` prost ` is distributed under the terms of the Apache License (Version 2.0).
289
289
290
- See [ LICENSE] ( LICENSE ) , for details.
290
+ See [ LICENSE] ( LICENSE ) for details.
291
291
292
292
Copyright 2017 Dan Burkert
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " benchmarks"
3
- version = " 0.1 .0"
3
+ version = " 0.0 .0"
4
4
authors = [" Dan Burkert <dan@danburkert.com>" ]
5
5
publish = false
6
6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " conformance"
3
- version = " 0.1.1 "
3
+ version = " 0.0.0 "
4
4
authors = [" Dan Burkert <dan@danburkert.com>" ]
5
5
publish = false
6
6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " fuzz"
3
- version = " 0.1.1 "
3
+ version = " 0.0.0 "
4
4
authors = [" Dan Burkert <dan@danburkert.com>" ]
5
5
publish = false
6
6
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " prost-build"
3
3
# NB: When modifying, also modify html_root_url in lib.rs
4
- version = " 0.1.1 "
4
+ version = " 0.2.0 "
5
5
authors = [" Dan Burkert <dan@danburkert.com>" ]
6
6
license = " Apache-2.0"
7
7
repository = " https://github.com/danburkert/prost"
@@ -17,8 +17,8 @@ itertools = "0.6"
17
17
log = " 0.3"
18
18
multimap = { version = " 0.4" , default-features = false }
19
19
petgraph = " 0.4"
20
- prost = { path = " .." }
21
- prost-types = { path = " ../prost-types" }
20
+ prost = { version = " 0.2 " , path = " .." }
21
+ prost-types = { version = " 0.2 " , path = " ../prost-types" }
22
22
tempdir = " 0.3"
23
23
24
24
[build-dependencies ]
Original file line number Diff line number Diff line change 4
4
# ` prost-build `
5
5
6
6
` prost-build ` makes it easy to generate Rust code from ` .proto ` files as part of
7
- a Cargo build.
7
+ a Cargo build. See the crate [ documentation] ( https://docs.rs/prost-build/ ) for examples
8
+ of how to integrate ` prost-build ` into a Cargo project.
8
9
9
- See the Crate [ documentation] ( https://crates.io/crates/prost-build ) for examples
10
- of how to integrate ` prost ` into a Cargo project.
10
+ ## License
11
+
12
+ ` prost-build ` is distributed under the terms of the Apache License (Version 2.0).
13
+
14
+ See [ LICENSE] ( ../LICENSE ) for details.
15
+
16
+ Copyright 2017 Dan Burkert
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/prost-build/0.1.1 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/prost-build/0.2.0 " ) ]
2
2
3
3
//! `prost-build` compiles `.proto` files into Rust.
4
4
//!
68
68
//!
69
69
//! // Include the `items` module, which is generated from items.proto.
70
70
//! pub mod items {
71
- //! include!(concat!(env!("OUT_DIR"), "/items.rs"));
71
+ //! include!(concat!(env!("OUT_DIR"), "/snazzy. items.rs"));
72
72
//! }
73
73
//!
74
74
//! pub fn create_large_shirt(color: String) -> items::Shirt {
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " prost-derive"
3
3
# NB: When modifying, also modify html_root_url in lib.rs
4
- version = " 0.1.1 "
4
+ version = " 0.2.0 "
5
5
authors = [" Dan Burkert <dan@danburkert.com>" ]
6
6
license = " Apache-2.0"
7
7
repository = " https://github.com/danburkert/prost"
Original file line number Diff line number Diff line change 6
6
` prost-derive ` handles generating encoding and decoding implementations for Rust
7
7
types annotated with ` prost ` annotation. For the most part, users of ` prost `
8
8
shouldn't need to interact with ` prost-derive ` directly.
9
+
10
+ ## License
11
+
12
+ ` prost-derive ` is distributed under the terms of the Apache License (Version 2.0).
13
+
14
+ See [ LICENSE] ( ../LICENSE ) for details.
15
+
16
+ Copyright 2017 Dan Burkert
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/prost-derive/0.1.1 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/prost-derive/0.2.0 " ) ]
2
2
// The `quote!` macro requires deep recursion.
3
3
#![ recursion_limit = "4096" ]
4
4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " prost-types"
3
3
# NB: When modifying, also modify html_root_url in lib.rs
4
- version = " 0.1.1 "
4
+ version = " 0.2.0 "
5
5
authors = [" Dan Burkert <dan@danburkert.com>" ]
6
6
license = " Apache-2.0"
7
7
repository = " https://github.com/danburkert/prost"
@@ -15,9 +15,5 @@ test = false
15
15
16
16
[dependencies ]
17
17
bytes = " 0.4"
18
- prost = { path = " .." }
19
- prost-derive = { path = " ../prost-derive" }
20
-
21
- [dev-dependencies ]
22
- prost-build = { path = " ../prost-build" }
23
- tempdir = " 0.3"
18
+ prost = { version = " 0.2" , path = " .." }
19
+ prost-derive = { version = " 0.2" , path = " ../prost-derive" }
Original file line number Diff line number Diff line change @@ -7,3 +7,15 @@ Prost definitions of Protocol Buffers well known types. See the [Protobuf refere
7
7
information about well known types.
8
8
9
9
[ 1 ] : https://developers.google.com/protocol-buffers/docs/reference/google.protobuf
10
+
11
+ ## License
12
+
13
+ ` prost-types ` is distributed under the terms of the Apache License (Version 2.0).
14
+ ` prost-types ` includes code imported from the Protocol Buffers projet, which is
15
+ included under its original ([ BSD] [ 2 ] ) license.
16
+
17
+ [ 2 ] : https://github.com/google/protobuf/blob/master/LICENSE
18
+
19
+ See [ LICENSE] ( ..LICENSE ) for details.
20
+
21
+ Copyright 2017 Dan Burkert
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/prost-codegen/0.1.1 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/prost-codegen/0.2.0 " ) ]
2
2
3
3
//! Protocol Buffers well-known types.
4
4
//!
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " protobuf"
3
- version = " 0.1 .0"
3
+ version = " 0.0 .0"
4
4
authors = [" Dan Burkert <dan@danburkert.com>" ]
5
5
publish = false
6
6
Original file line number Diff line number Diff line change 1
- #![ doc( html_root_url = "https://docs.rs/prost/0.1.1 " ) ]
1
+ #![ doc( html_root_url = "https://docs.rs/prost/0.2.0 " ) ]
2
2
3
3
extern crate bytes;
4
4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " tests"
3
- version = " 0.1.1 "
3
+ version = " 0.0.0 "
4
4
authors = [" Dan Burkert <dan@danburkert.com>" ]
5
5
publish = false
6
6
You can’t perform that action at this time.
0 commit comments