1[package] 2 3name = "protobuf-json-mapping" 4version = "3.2.0" 5authors = ["Stepan Koltsov <stepan.koltsov@gmail.com>"] 6edition = "2021" 7license = "MIT" 8homepage = "https://github.com/stepancheg/rust-protobuf/" 9repository = "https://github.com/stepancheg/rust-protobuf/" 10documentation = "https://github.com/stepancheg/rust-protobuf/blob/master/README.md" 11description = """ 12JSON mapping for Protocol Buffers messages. 13""" 14 15[lib] 16bench = false 17 18[dependencies] 19thiserror = "1.0.30" 20 21protobuf = { path = "../protobuf", version = "=3.2.0" } 22protobuf-support = { path = "../protobuf-support", version = "=3.2.0" } 23 24[package.metadata.docs.rs] 25all-features = true 26