force-sync 0.2.0

Correctness-first bidirectional Salesforce and Postgres sync engine
Documentation
1
2
3
4
5
6
7
8
//! Smoke tests for the force-sync crate scaffold.

use force_sync::version;

#[test]
fn force_sync_exposes_version() {
    assert_eq!(version(), env!("CARGO_PKG_VERSION"));
}