1 个不稳定版本
0.2.3 | 2022年9月11日 |
---|
#209 in #com
7KB
131 行代码(不含注释)
PostHog Rust
请参阅主 PostHog 文档。
此包正在开发中
快速入门
将 posthog-rs
添加到您的 Cargo.toml
文件中。
[dependencies]
posthog_rs = "0.2.0"
let client = crate::client(env!("POSTHOG_API_KEY"));
let mut event = Event::new("test", "1234");
event.insert_prop("key1", "value1").unwrap();
event.insert_prop("key2", vec!["a", "b"]).unwrap();
client.capture(event).unwrap();
依赖关系
~5–20MB
~266K SLoC