dart_port 0.0.1

dart_port.rs
Documentation
1
2
3
4
5
6
7
8
9
// This is free and unencumbered software released into the public domain.

#[allow(unused)]
pub static FEATURES: &[&str] = &[
    #[cfg(feature = "dynamic")]
    "dynamic",
    #[cfg(feature = "static")]
    "static",
];