7 个版本
0.2.2 | 2021年10月26日 |
---|---|
0.2.1 | 2021年10月26日 |
0.1.3 | 2021年4月29日 |
#103 in #com
用于 cata
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();
依赖项
~4–16MB
~248K SLoC