switch ron to pretty formatting

This commit is contained in:
Ryan
2017-10-11 18:54:51 -07:00
parent 644fadfa0c
commit 4d72b86c7c
+1 -1
View File
@@ -9,7 +9,7 @@ pub type DeserializeError = de::Error;
pub fn serialize<T>(value: &T) -> ser::Result<String>
where T: Serialize
{
ser::to_string(value)
ser::pretty::to_string(value)
}
pub fn deserialize<T, I>(bytes: &I) -> Result<T, ::error::BreakError>