dlprotoc 0.4.11+35.0

Downloads protoc Protocol Buffers compiler for Cargo builds
Documentation
1
2
3
4
5
6
7
#[test]
fn test_types_are_public() {
    // had an issue where the Error type was not accessible outside the crate
    const TEST_MESSAGE: &str = "test message";
    let err = dlprotoc::Error::from_string(TEST_MESSAGE.to_string());
    assert_eq!(TEST_MESSAGE, err.to_string());
}