[package] name = "clock-bound-ffi" version = "1.0.0" authors = [ "Julien Ridoux ", "Jacob Wisniewski ", "Tam Phan ", "Ryan Luu ", "Wenhao Piao " ] description = "A C client library used to interact with ClockBound daemon." edition = "2021" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/aws/clock-bound" keywords = ["aws", "ntp", "ec2", "time"] categories = [ "date-and-time" ] [lib] # Produces libclockbound.a, libclockbound.so crate-type = ["cdylib", "staticlib"] name = "clockbound" path = "src/lib.rs" [dependencies] clock-bound-shm = { version = "1.0.0", path = "../clock-bound-shm" } errno = { version = "=0.3.0", default-features = false } libc = { version = "0.2", default-features = false } [dev-dependencies] byteorder = "1"