1[package] 2name = "aconfig_storage_write_api" 3version = "0.1.0" 4edition = "2021" 5 6[features] 7default = ["cargo"] 8cargo = [] 9 10[dependencies] 11anyhow = "1.0.69" 12cxx = "1.0" 13memmap2 = "0.8.0" 14tempfile = "3.9.0" 15thiserror = "1.0.56" 16aconfig_storage_file = { path = "../aconfig_storage_file" } 17aconfig_storage_read_api = { path = "../aconfig_storage_read_api" } 18 19[build-dependencies] 20cxx-build = "1.0" 21